phone property

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

@optional

@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(10);
  1. @TagNumber.new(18)
set phone (String value)

Implementation

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