CodeCountryPhone constructor

CodeCountryPhone({
  1. required String phoneCode,
  2. required String flag,
  3. required String name,
  4. required String codeValue,
  5. required String localName,
  6. bool enableShortcutsThousands = true,
  7. String symbol = "\$",
})

Implementation

CodeCountryPhone({
  required this.phoneCode,
  required this.flag,
  required this.name,
  required this.codeValue,
  required this.localName,
  this.enableShortcutsThousands = true,
  this.symbol = "\$",
});