HelpCountryCode constructor

const HelpCountryCode({
  1. required String countryCode,
  2. List<String>? prefixes,
  3. List<String>? patterns,
})

Help Country Code constructor.

Implementation

const HelpCountryCode({
  required this.countryCode,
  this.prefixes,
  this.patterns,
}) : super._();