LedBulbIndicator constructor

LedBulbIndicator({
  1. Key? key,
  2. required LedBulbColors initialState,
  3. double? margin,
  4. required double size,
  5. bool glow = false,
})

Implementation

LedBulbIndicator(
    {Key? key,
    required this.initialState,
    this.margin,
    required this.size,
    this.glow = false})
    : super(key: key);