ContractMatching constructor
ContractMatching({})
Implementation
factory ContractMatching(
{required int accountId,
required int subAccountId,
required Contract taker,
required List<Contract> maker,
required String fee,
required int feeToken,
required List<ContractPrice> contractPrices,
required List<SpotPriceInfo> marginPrices,
dynamic hint}) =>
RustLib.instance.api.contractMatchingNew(
accountId: accountId,
subAccountId: subAccountId,
taker: taker,
maker: maker,
fee: fee,
feeToken: feeToken,
contractPrices: contractPrices,
marginPrices: marginPrices,
hint: hint);