PickupServicesPickupService.fromJson constructor
PickupServicesPickupService.fromJson(
- Map json_
Implementation
PickupServicesPickupService.fromJson(core.Map json_)
: this(
carrierName: json_.containsKey('carrierName')
? json_['carrierName'] as core.String
: null,
country: json_.containsKey('country')
? json_['country'] as core.String
: null,
serviceName: json_.containsKey('serviceName')
? json_['serviceName'] as core.String
: null,
);