StoreCodeSetWithMov.fromJson constructor

StoreCodeSetWithMov.fromJson(
  1. Map json_
)

Implementation

StoreCodeSetWithMov.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,
    );