CreateLocationResponse constructor

CreateLocationResponse({
  1. Location? location,
})

Implementation

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