ShippingsettingsGetSupportedCarriersResponse.fromJson constructor
ShippingsettingsGetSupportedCarriersResponse.fromJson(
- Map json_
Implementation
ShippingsettingsGetSupportedCarriersResponse.fromJson(core.Map json_)
: this(
carriers: json_.containsKey('carriers')
? (json_['carriers'] as core.List)
.map((value) => CarriersCarrier.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
kind: json_.containsKey('kind') ? json_['kind'] as core.String : null,
);