Product constructor

Product(
  1. String? id,
  2. String? baseCurrency,
  3. String? quoteCurrency,
  4. double? quoteIncrement,
  5. double? baseIncrement,
  6. String? displayName,
  7. double? minMarketFunds,
  8. bool marginEnabled,
  9. bool postOnly,
  10. bool limitOnly,
  11. bool cancelOnly,
  12. String? status,
  13. String? statusMessage,
  14. bool tradingDisabled,
  15. bool fxStablecoin,
  16. double? maxSlippagePercentage,
  17. 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);