phone property

  1. @TagNumber.new(18)
String get phone

@mandatory

@description The primary telephone contact or mobile line number assigned to the account profile.

@example "+12125550123"

@regex .+

@format Non-empty string; adoption of standard international E.164 formats is highly recommended.

Implementation

@$pb.TagNumber(18)
$core.String get phone => $_getSZ(12);
  1. @TagNumber.new(18)
set phone (String value)

Implementation

@$pb.TagNumber(18)
set phone($core.String value) => $_setString(12, value);