PhoneNumberMatch constructor

PhoneNumberMatch(
  1. int start,
  2. String rawString,
  3. PhoneNumber number
)

Implementation

PhoneNumberMatch(this.start, this.rawString, this.number) {
  if (start < 0) {
    throw IllegalArgumentException('Start index must be >= 0.');
  }
}