PhotoFilterSelector constructor

PhotoFilterSelector({@required Image image, @required String filename, @required List<Filter> filters, Widget loader: const Center(child: CircularProgressIndicator()), BoxFit fit: BoxFit.fill })

Implementation

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