LookupDiscoveredServiceResponse.fromJson constructor
LookupDiscoveredServiceResponse.fromJson(
- Map json_
Implementation
LookupDiscoveredServiceResponse.fromJson(core.Map json_)
: this(
discoveredService: json_.containsKey('discoveredService')
? DiscoveredService.fromJson(json_['discoveredService']
as core.Map<core.String, core.dynamic>)
: null,
);