normalizeFile method

  1. @override
Future<NormalizedImage?> normalizeFile(
  1. String file,
  2. List<Offset> points,
  3. ColorMode color
)
override

Normalizes the image.

Parameters:

  • file: path to the file.
  • points: document points.

Returns a NormalizedImage on success, or null if the image could not be normalized.

Implementation

@override
Future<NormalizedImage?> normalizeFile(
    String file, List<Offset> points, ColorMode color) async {
  return _ddnManager.normalizeFile(file, points, color);
}