Transfer constructor
Transfer({})
Implementation
factory Transfer(
{required int accountId,
required String toAddress,
required int fromSubAccountId,
required int toSubAccountId,
required int token,
required String fee,
required String amount,
required int nonce,
int? ts,
dynamic hint}) =>
RustLib.instance.api.transferNew(
accountId: accountId,
toAddress: toAddress,
fromSubAccountId: fromSubAccountId,
toSubAccountId: toSubAccountId,
token: token,
fee: fee,
amount: amount,
nonce: nonce,
ts: ts,
hint: hint);