UpdateLocationResponse constructor

UpdateLocationResponse({
  1. Location? location,
})

Implementation

factory UpdateLocationResponse({
  Location? location,
}) {
  final $result = create();
  if (location != null) {
    $result.location = location;
  }
  return $result;
}