fromJson static method

MmOpenInteractiveDialogRequestDialog? fromJson(
  1. dynamic value
)

Returns a new MmOpenInteractiveDialogRequestDialog instance and imports its values from value if it's a Map, null otherwise.

Implementation

// ignore: prefer_constructors_over_static_methods
static MmOpenInteractiveDialogRequestDialog? fromJson(dynamic value) {
  if (value is Map) {
    final json = value.cast<String, dynamic>();

    // Ensure that the map contains the required keys.
    // Note 1: the values aren't checked for validity beyond being non-null.
    // Note 2: this code is stripped in release mode!
    assert(() {
      requiredKeys.forEach((key) {
        assert(
            json.containsKey(key), 'Required key "MmOpenInteractiveDialogRequestDialog[$key]" is missing from JSON.');
        assert(
            json[key] != null, 'Required key "MmOpenInteractiveDialogRequestDialog[$key]" has a null value in JSON.');
      });
      return true;
    }());

    return MmOpenInteractiveDialogRequestDialog(
      callbackId: mapValueOfType<String>(json, r'callback_id'),
      title: mapValueOfType<String>(json, r'title')!,
      introductionText: mapValueOfType<String>(json, r'introduction_text'),
      elements: json[r'elements'] ?? const [],
      submitLabel: mapValueOfType<String>(json, r'submit_label'),
      notifyOnCancel: mapValueOfType<bool>(json, r'notify_on_cancel'),
      state: mapValueOfType<String>(json, r'state'),
    );
  }
  return null;
}