LightSettings constructor

LightSettings({
  1. required ({double? alpha, double? blue, double? green, double? red}) color,
  2. required String lightOnDurationMillis,
  3. required String lightOffDurationMillis,
})

Represents settings to control notification LED that can be included in AndroidNotification.

Implementation

LightSettings({
  required this.color,
  required this.lightOnDurationMillis,
  required this.lightOffDurationMillis,
});