GoogleServiceInfo.fromJson constructor

GoogleServiceInfo.fromJson(
  1. Map json_
)

Implementation

GoogleServiceInfo.fromJson(core.Map json_)
    : this(
        googleServiceType: json_.containsKey('googleServiceType')
            ? json_['googleServiceType'] as core.String
            : null,
        sourceIp: json_.containsKey('sourceIp')
            ? json_['sourceIp'] as core.String
            : null,
      );