ECGGraph constructor
const
ECGGraph({
- Key? key,
- required MBTimeWindow timeWindow,
- required MBGraphSize graphSize,
- required MBTickerType tickerType,
- required Map<
String, dynamic> variable, - required Color color,
- required double height,
- required DateTime referenceTime,
Implementation
const ECGGraph({
super.key,
required super.timeWindow,
required super.graphSize,
required super.tickerType,
required super.variable,
required super.color,
required super.height,
required super.referenceTime,
}) : super(
allowedSizes: const [MBGraphSize.half],
allowedVariableTypes: const [MBVariableType.number],
allowedVariableForms: const [MBVariableForm.array],
);