Account class

Represents an account in Stellar network with it's sequence number. Account object is required to build a Transaction.

Implemented types

Constructors

Account(String _accountId, int _mSequenceNumber, {int? muxedAccountMed25519Id})

Properties

accountId String
Returns ID associated with this Account.
read-onlyoverride
hashCode int
The hash code for this object.
read-onlyinherited
incrementedSequenceNumber int
Returns sequence number incremented by one, but does not increment internal counter.
read-onlyoverride
muxedAccount MuxedAccount
read-onlyoverride
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited
sequenceNumber int
Returns current sequence number ot this Account.
read-onlyoverride

Methods

incrementSequenceNumber() → void
Increments sequence number in this account object by one.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromAccountId(String accountId, int sequenceNumber) Account