HistoricalValue constructor

const HistoricalValue({
  1. Map<String, dynamic>? source,
  2. required DateTime date,
  3. required num value,
})

Implementation

const HistoricalValue({
  Map<String, dynamic>? source,
  required this.date,
  required this.value,
}) : super(source: source);