PhoneNumber.fromMap constructor

PhoneNumber.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory PhoneNumber.fromMap(Map<String, dynamic> json) => PhoneNumber(
      defaultNumber: json["defaultNumber"],
      fontSize: json["fontSize"],
      countryPickerWidth: json["countryPickerWidth"],
      countryPickerHeight: json["countryPickerHeight"],
      countryCodeInputWidth: json["countryCodeInputWidth"],
      countryCodeInputHeight: json["countryCodeInputHeight"],
      phoneNumberInputHeight: json["phoneNumberInputHeight"],
      phoneNumberInputWidth: json["phoneNumberInputWidth"],
    );