fromJson static method
Returns a new CreateSMSCustomerResponseDTO instance and imports its values from
value if it's a Map, null otherwise.
Implementation
// ignore: prefer_constructors_over_static_methods
static CreateSMSCustomerResponseDTO? 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 "CreateSMSCustomerResponseDTO[$key]" is missing from JSON.');
assert(json[key] != null, 'Required key "CreateSMSCustomerResponseDTO[$key]" has a null value in JSON.');
});
return true;
}());
return CreateSMSCustomerResponseDTO(
status: Status59dEnum.fromJson(json[r'status']),
errorMsg: mapValueOfType<String>(json, r'error_msg'),
isPhoneConfirmed: mapValueOfType<bool>(json, r'is_phone_confirmed'),
token: mapValueOfType<String>(json, r'token'),
user: FullUser.fromJson(json[r'user']),
);
}
return null;
}