GraphWidget constructor

const GraphWidget({
  1. Key? key,
  2. required MBGraphSize graphSize,
  3. required MBTickerType tickerType,
  4. required MBTimeWindow timeWindow,
  5. required Map<String, dynamic> variable,
  6. required Color color,
  7. required double height,
  8. required List<MBGraphSize> allowedSizes,
  9. required List<MBVariableType> allowedVariableTypes,
  10. required List<MBVariableForm> allowedVariableForms,
  11. required DateTime referenceTime,
})

Implementation

const GraphWidget({
  super.key,
  required this.graphSize,
  required this.tickerType,
  required this.timeWindow,
  required this.variable,
  required this.color,
  required this.height,
  required this.allowedSizes,
  required this.allowedVariableTypes,
  required this.allowedVariableForms,
  required this.referenceTime
});