Proxy.fromJson constructor
Implementation
factory Proxy.fromJson(Map<String, dynamic> json) {
return Proxy(
defaultSessionExpiryMinutes: json['DefaultSessionExpiryMinutes'] as int?,
disabled: json['Disabled'] as bool?,
fallBackPhoneNumber: json['FallBackPhoneNumber'] as String?,
phoneNumberCountries: (json['PhoneNumberCountries'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
);
}