BatchGetOrdersResponse.fromJson constructor

BatchGetOrdersResponse.fromJson(
  1. 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(),
    );