HistoricalPrice constructor

HistoricalPrice({
  1. required double? day,
  2. required double? the50Days,
  3. required double? the200Days,
})

Implementation

HistoricalPrice({
  required this.day,
  required this.the50Days,
  required this.the200Days,
});