PhoneNumber constructor

const PhoneNumber(
  1. int countryCode,
  2. String nationalNumber
)

Creates a phone number.

Implementation

const PhoneNumber(this.countryCode, this.nationalNumber);