rawInput property

  1. @TagNumber(5)
String rawInput

This field is used to store the raw input string containing phone numbers before it was canonicalized by the library. For example, it could be used to store alphanumerical numbers such as "1-800-GOOG-411".

Implementation

@$pb.TagNumber(5)
$core.String get rawInput => $_getSZ(4);
  1. @TagNumber(5)
void rawInput=(String v)

Implementation

@$pb.TagNumber(5)
set rawInput($core.String v) {
  $_setString(4, v);
}