Product constructor
Product(
- String? id,
- String? baseCurrency,
- String? quoteCurrency,
- double? quoteIncrement,
- double? baseIncrement,
- String? displayName,
- double? minMarketFunds,
- bool marginEnabled,
- bool postOnly,
- bool limitOnly,
- bool cancelOnly,
- String? status,
- String? statusMessage,
- bool tradingDisabled,
- bool fxStablecoin,
- double? maxSlippagePercentage,
- bool auctionMode,
Implementation
Product(
this.id,
this.baseCurrency,
this.quoteCurrency,
this.quoteIncrement,
this.baseIncrement,
this.displayName,
this.minMarketFunds,
this.marginEnabled,
this.postOnly,
this.limitOnly,
this.cancelOnly,
this.status,
this.statusMessage,
this.tradingDisabled,
this.fxStablecoin,
this.maxSlippagePercentage,
this.auctionMode);