description property

  1. @TagNumber(2)
String description

Wallet name or description. Use this field to add vendor specific information about this wallet, such as email, phone, internal ID, or anything you'd like to associate with this wallet. This field is searchable.

Implementation

@$pb.TagNumber(2)
$core.String get description => $_getSZ(1);
  1. @TagNumber(2)
void description=(String v)

Implementation

@$pb.TagNumber(2)
set description($core.String v) {
  $_setString(1, v);
}