LocalinventoryCustomBatchResponse.fromJson constructor

LocalinventoryCustomBatchResponse.fromJson(
  1. Map json_
)

Implementation

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