Country constructor
Country(
- String name,
- String code,
- int prefix,
- LengthRule length,
Implementation
Country(this.name, this.code, this.prefix, this.length)
: _prefixStr = prefix.toString(),
prefixLength = prefix.toString().length;