availableBalance property
dynamic
get
availableBalance
Available balance to perform paid transactions.
Implementation
get availableBalance => outgoing > balance ? 0 : balance - outgoing;
Available balance to perform paid transactions.
get availableBalance => outgoing > balance ? 0 : balance - outgoing;