MinimumOrderValueTable.fromJson constructor

MinimumOrderValueTable.fromJson(
  1. Map json_
)

Implementation

MinimumOrderValueTable.fromJson(core.Map json_)
    : this(
        storeCodeSetWithMovs: json_.containsKey('storeCodeSetWithMovs')
            ? (json_['storeCodeSetWithMovs'] as core.List)
                .map((value) =>
                    MinimumOrderValueTableStoreCodeSetWithMov.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );