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