LocalinventoryCustomBatchRequest.fromJson constructor

LocalinventoryCustomBatchRequest.fromJson(
  1. Map json_
)

Implementation

LocalinventoryCustomBatchRequest.fromJson(core.Map json_)
    : this(
        entries: (json_['entries'] as core.List?)
            ?.map((value) => LocalinventoryCustomBatchRequestEntry.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
      );