AlphaAnimation constructor

AlphaAnimation({
  1. required int start,
  2. required int end,
  3. required double alpha,
})

Implementation

AlphaAnimation({
  required super.start,
  required super.end,
  required this.alpha,
}) : super(type: AnimationType.alpha);