enableAutoContrast method

Future<void> enableAutoContrast(
  1. bool enable
)

Enables or disables the native auto-contrast adjustment used during capture flows.

Implementation

Future<void> enableAutoContrast(bool enable) async {
  await methodChannel.invokeMethod('SmartfaceMobile.enableAutoContrast', {
    'arg0': enable,
  });
}