GetPhoneNumberSettingsResponse.fromJson constructor

GetPhoneNumberSettingsResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory GetPhoneNumberSettingsResponse.fromJson(Map<String, dynamic> json) {
  return GetPhoneNumberSettingsResponse(
    callingName: json['CallingName'] as String?,
    callingNameUpdatedTimestamp:
        timeStampFromJson(json['CallingNameUpdatedTimestamp']),
  );
}