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