rotateCounterClockwise method

  1. @override
LuminanceSource rotateCounterClockwise()
override

Get a rotated version of this object.

Returns a new object with rotated image data by 90 degrees counterclockwise. Only callable if isRotateSupported is true.

Implementation

@override
LuminanceSource rotateCounterClockwise() {
  return InvertedLuminanceSource(_delegate.rotateCounterClockwise());
}