sourceAccount property

String sourceAccount

Returns the operation source account.

Implementation

String get sourceAccount => _sourceAccount;
void sourceAccount= (String sourceAccountId)

Sets the operation source account represented by sourceAccountId.

Implementation

set sourceAccount(String sourceAccountId) {
  _sourceAccount =
      checkNotNull(sourceAccountId, "source account id cannot be null");
}