FilterAppliedImage constructor

const FilterAppliedImage({
  1. Key? key,
  2. required Uint8List image,
  3. required ColorFilterGenerator filter,
  4. BoxFit? fit,
  5. dynamic onProcess(
    1. Uint8List
    )?,
  6. double opacity = 1,
})

Implementation

const FilterAppliedImage({
  super.key,
  required this.image,
  required this.filter,
  this.fit,
  this.onProcess,
  this.opacity = 1,
});