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