Settings constructor

Settings({
  1. bool? apiEnabled,
  2. bool? forceSsl,
  3. String? currency,
  4. String? currencySymbol,
  5. String? currencyPosition,
  6. String? thousandSeparator,
  7. String? decimalSeparator,
  8. int? numberOfDecimals,
  9. bool? geolocationEnabled,
  10. Taxonomies? taxonomies,
  11. ProductVisibilityTerms? productVisibilityTerms,
})

Implementation

Settings({
  this.apiEnabled,
  this.forceSsl,
  this.currency,
  this.currencySymbol,
  this.currencyPosition,
  this.thousandSeparator,
  this.decimalSeparator,
  this.numberOfDecimals,
  this.geolocationEnabled,
  this.taxonomies,
  this.productVisibilityTerms,
});