ChartTranslations constructor

const ChartTranslations({
  1. String date = 'Date',
  2. String open = 'Open',
  3. String high = 'High',
  4. String low = 'Low',
  5. String close = 'Close',
  6. String changeAmount = 'Change',
  7. String change = 'Change%',
  8. String amount = 'Amount',
})

Implementation

const ChartTranslations({
  this.date = 'Date',
  this.open = 'Open',
  this.high = 'High',
  this.low = 'Low',
  this.close = 'Close',
  this.changeAmount = 'Change',
  this.change = 'Change%',
  this.amount = 'Amount',
});