Phone constructor

const Phone(
  1. int countryCode,
  2. String number
)

Implementation

const Phone(
  this.countryCode,
  this.number,
);