PhoneNumberException constructor

const PhoneNumberException({
  1. required Code code,
  2. String? description,
})

Implementation

const PhoneNumberException({
  required this.code,
  this.description,
});