PhotoFilter constructor

PhotoFilter({@required Image image, @required String filename, @required Filter filter, BoxFit fit: BoxFit.fill, 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()),
});