Product constructor

Product({
  1. String? id,
  2. String? displayName,
  3. String? baseCurrency,
  4. String? quoteCurrency,
  5. double? baseIncrement,
  6. double? quoteIncrement,
  7. double? baseMinSize,
  8. double? baseMaxSize,
  9. double? minMarketFunds,
  10. double? maxMarketFunds,
  11. String? status,
  12. String? statusMessage,
  13. bool? cancelOnly,
  14. bool? limitOnly,
  15. bool? postOnly,
  16. bool? tradingDisabled,
  17. bool? marginEnabled,
})

Implementation

Product({
  this.id,
  this.displayName,
  this.baseCurrency,
  this.quoteCurrency,
  this.baseIncrement,
  this.quoteIncrement,
  this.baseMinSize,
  this.baseMaxSize,
  this.minMarketFunds,
  this.maxMarketFunds,
  this.status,
  this.statusMessage,
  this.cancelOnly,
  this.limitOnly,
  this.postOnly,
  this.tradingDisabled,
  this.marginEnabled,
});