RequestInventoryVerificationResponse.fromJson constructor

RequestInventoryVerificationResponse.fromJson(
  1. Map json_
)

Implementation

RequestInventoryVerificationResponse.fromJson(core.Map json_)
  : this(
      omnichannelSetting: json_.containsKey('omnichannelSetting')
          ? OmnichannelSetting.fromJson(
              json_['omnichannelSetting']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
    );