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