PhotoFilter constructor

PhotoFilter({
  1. required Image image,
  2. required String filename,
  3. required Filter filter,
  4. BoxFit fit = BoxFit.fill,
  5. Widget loader = const Center(child: CircularProgressIndicator()),
})

Implementation

PhotoFilter({
  required this.image,
  required this.filename,
  required this.filter,
  this.fit = BoxFit.fill,
  this.loader = const Center(child: CircularProgressIndicator()),
});