SevenSegmentDisplay constructor

SevenSegmentDisplay({
  1. required String value,
  2. Color activeColor = Colors.green,
  3. Color inactiveColor = const Color(30, 30, 30),
})

Creates a seven segment display.

Implementation

SevenSegmentDisplay({
  required this.value,
  this.activeColor = Colors.green,
  this.inactiveColor = const Color(30, 30, 30),
});