PaintingEffect constructor

const PaintingEffect({
  1. bool reverse = false,
  2. double lowerBound = 0.0,
  3. double upperBound = 1.0,
  4. required Duration duration,
})

Default constructor

Implementation

const PaintingEffect({
  this.reverse = false,
  this.lowerBound = 0.0,
  this.upperBound = 1.0,
  required this.duration,
});