applyTo method

  1. @override
Bitmap applyTo(
  1. Bitmap bitmap
)
override

Implementation

@override
Bitmap applyTo(Bitmap bitmap) {
  final Bitmap copy = bitmap.cloneHeadless();
  _contrastCore(copy.content, contrastFactor);
  return copy;
}