LocationAuthResponse constructor

LocationAuthResponse({
  1. LocationAuth? auth,
})

Implementation

factory LocationAuthResponse({
  LocationAuth? auth,
}) {
  final $result = create();
  if (auth != null) {
    $result.auth = auth;
  }
  return $result;
}