address property

  1. @TagNumber.new(32)
String get address

@optional

@description Primary street details, building number, or geographic line matching residential or official mailing location records.

@example "123 Business Park Drive, Suite 400"

@regex .*

@format May contain any UTF-8 characters.

Implementation

@$pb.TagNumber(32)
$core.String get address => $_getSZ(15);
  1. @TagNumber.new(32)
set address (String value)

Implementation

@$pb.TagNumber(32)
set address($core.String value) => $_setString(15, value);