sourceAccount property Null safety
Returns the operation source account.
Implementation
MuxedAccount? get sourceAccount => _sourceAccount;
Sets the operation source account represented by sourceAccount.
Implementation
set sourceAccount(MuxedAccount? sourceAccount) {
_sourceAccount =
checkNotNull(sourceAccount, "source account cannot be null");
}