fromJson static method

CallMemberUpdatedPermissionEvent? fromJson(
  1. dynamic value
)

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

Implementation

// ignore: prefer_constructors_over_static_methods
static CallMemberUpdatedPermissionEvent? 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(() {
      assert(json.containsKey(r'call'),
          'Required key "CallMemberUpdatedPermissionEvent[call]" is missing from JSON.');
      assert(json[r'call'] != null,
          'Required key "CallMemberUpdatedPermissionEvent[call]" has a null value in JSON.');
      assert(json.containsKey(r'call_cid'),
          'Required key "CallMemberUpdatedPermissionEvent[call_cid]" is missing from JSON.');
      assert(json[r'call_cid'] != null,
          'Required key "CallMemberUpdatedPermissionEvent[call_cid]" has a null value in JSON.');
      assert(json.containsKey(r'capabilities_by_role'),
          'Required key "CallMemberUpdatedPermissionEvent[capabilities_by_role]" is missing from JSON.');
      assert(json[r'capabilities_by_role'] != null,
          'Required key "CallMemberUpdatedPermissionEvent[capabilities_by_role]" has a null value in JSON.');
      assert(json.containsKey(r'created_at'),
          'Required key "CallMemberUpdatedPermissionEvent[created_at]" is missing from JSON.');
      assert(json[r'created_at'] != null,
          'Required key "CallMemberUpdatedPermissionEvent[created_at]" has a null value in JSON.');
      assert(json.containsKey(r'members'),
          'Required key "CallMemberUpdatedPermissionEvent[members]" is missing from JSON.');
      assert(json[r'members'] != null,
          'Required key "CallMemberUpdatedPermissionEvent[members]" has a null value in JSON.');
      assert(json.containsKey(r'type'),
          'Required key "CallMemberUpdatedPermissionEvent[type]" is missing from JSON.');
      assert(json[r'type'] != null,
          'Required key "CallMemberUpdatedPermissionEvent[type]" has a null value in JSON.');
      return true;
    }());

    return CallMemberUpdatedPermissionEvent(
      call: CallResponse.fromJson(json[r'call'])!,
      callCid: mapValueOfType<String>(json, r'call_cid')!,
      //MANUAL_EDIT mapCast
      capabilitiesByRole: json[r'capabilities_by_role'] == null
          ? const {}
          : capabilitiesFromJson(json['capabilities_by_role']),
      createdAt: mapDateTime(json, r'created_at', '')!,
      members: MemberResponse.listFromJson(json[r'members']),
      type: mapValueOfType<String>(json, r'type')!,
    );
  }
  return null;
}