accountId property

  1. @override
String? get accountId
override

Property getter and setter for accountId:

Implementation

@override String? get accountId => _accountId;
  1. @override
set accountId (String? accountId)
override

Implementation

@override set accountId(String? accountId) {
  this._accountId = accountId;
  wrapped['accountId'] = jsonLiteral(accountId);
}