Phone constructor

Phone({
  1. String? number,
  2. String? countryCode,
})

Implementation

Phone({
  this.number,
  this.countryCode,
});