SearchPhone constructor

const SearchPhone(
  1. SearchPhoneType type, {
  2. required String formattedNumber,
  3. String? info,
  4. String? country,
  5. String? prefix,
  6. String? ext,
  7. String? number,
})

Implementation

const SearchPhone(
  this.type, {
  required this.formattedNumber,
  this.info,
  this.country,
  this.prefix,
  this.ext,
  this.number,
});