LocalinventoryCustomBatchResponseEntry.fromJson constructor

LocalinventoryCustomBatchResponseEntry.fromJson(
  1. Map json_
)

Implementation

LocalinventoryCustomBatchResponseEntry.fromJson(core.Map json_)
  : this(
      batchId: json_['batchId'] as core.int?,
      errors: json_.containsKey('errors')
          ? Errors.fromJson(
              json_['errors'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      kind: json_['kind'] as core.String?,
    );