MinimumOrderValueTableStoreCodeSetWithMov.fromJson constructor

MinimumOrderValueTableStoreCodeSetWithMov.fromJson(
  1. Map json_
)

Implementation

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