MinimumOrderValueTableStoreCodeSetWithMov.fromJson constructor

MinimumOrderValueTableStoreCodeSetWithMov.fromJson(
  1. Map json_
)

Implementation

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