fromJson static method

CreateDeviceRequest? fromJson(
  1. dynamic value
)

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

Implementation

// ignore: prefer_constructors_over_static_methods
static CreateDeviceRequest? 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'id'),
          'Required key "CreateDeviceRequest[id]" is missing from JSON.');
      assert(json[r'id'] != null,
          'Required key "CreateDeviceRequest[id]" has a null value in JSON.');
      assert(json.containsKey(r'push_provider'),
          'Required key "CreateDeviceRequest[push_provider]" is missing from JSON.');
      assert(json[r'push_provider'] != null,
          'Required key "CreateDeviceRequest[push_provider]" has a null value in JSON.');
      return true;
    }());

    return CreateDeviceRequest(
      id: mapValueOfType<String>(json, r'id')!,
      pushProvider: CreateDeviceRequestPushProviderEnum.fromJson(
          json[r'push_provider'])!,
      pushProviderName: mapValueOfType<String>(json, r'push_provider_name'),
      voipToken: mapValueOfType<bool>(json, r'voip_token'),
    );
  }
  return null;
}