MesiboPhoneContact constructor

MesiboPhoneContact({
  1. MesiboProfileFlutter? profile,
  2. String? name,
  3. String? phoneNumber,
  4. String? nationalNumber,
  5. String? formattedPhoneNumber,
  6. String? country,
  7. String? countryIsoCode,
  8. required int countryPhoneCode,
  9. required int type,
  10. required bool valid,
  11. required bool possiblyValid,
})

Implementation

}class MesiboPhoneContact extends mEsIbOfluTterCLass{static const int PHONETYPE_INVALID=-1;static const int PHONETYPE_MAYBE= 0;static const int PHONETYPE_VALID= 1;static const int PHONETYPE_MOBILE= 2;static const int PHONETYPE_FIXED= 3;static const int PHONETYPE_TOLLFREE= 4;static const int PHONETYPE_PREMIUM= 5;static const int PHONETYPE_VOIP= 6;static const int PHONETYPE_PRIVATE= 7;static const int PHONETYPE_COUNTRY= 10;MesiboPhoneContact({super.profile,super.name,super.phoneNumber,super.nationalNumber,super.formattedPhoneNumber,super.country,super.countryIsoCode,required super.countryPhoneCode,required super.type,required super.valid,required super.possiblyValid,}
        );