Phone.fromJson constructor

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

Implementation

Phone.fromJson(Map<String, dynamic> json) {
  number = json['number'] as String?;
  countryCode = json['country_code'] as String?;
}