GoogleServiceInfo constructor

GoogleServiceInfo({
  1. String? sourceIp,
  2. GoogleServiceInfo_GoogleServiceType? googleServiceType,
})

Implementation

factory GoogleServiceInfo({
  $core.String? sourceIp,
  GoogleServiceInfo_GoogleServiceType? googleServiceType,
}) {
  final $result = create();
  if (sourceIp != null) {
    $result.sourceIp = sourceIp;
  }
  if (googleServiceType != null) {
    $result.googleServiceType = googleServiceType;
  }
  return $result;
}