Funding constructor
Funding({})
Implementation
factory Funding(
{required int accountId,
required int subAccountId,
required int subAccountNonce,
required List<int> fundingAccountIds,
required String fee,
required int feeToken,
dynamic hint}) =>
RustLib.instance.api.fundingNew(
accountId: accountId,
subAccountId: subAccountId,
subAccountNonce: subAccountNonce,
fundingAccountIds: fundingAccountIds,
fee: fee,
feeToken: feeToken,
hint: hint);