GoogleServiceInfo.fromJson constructor
GoogleServiceInfo.fromJson(
- 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,
);