BlinkingWidget constructor

const BlinkingWidget({
  1. Key? key,
  2. Color? beginColor,
  3. Color? endColor,
  4. Duration? duration,
  5. int? repeats,
  6. required ColoredWidgetBuilder builder,
  7. bool disabled = false,
})

Creates a BlinkingWidget widget

Implementation

const BlinkingWidget({
  Key? key,
  this.beginColor,
  this.endColor,
  this.duration,
  this.repeats,
  required this.builder,
  this.disabled = false,
}) : super(key: key);