scanWithCamera method

Future<AnalyzerResult?> scanWithCamera(
  1. CaptureSettings captureSettings,
  2. String license
)

Returns the scanWithCamera method from the MethodChannelCaptureFlutter. Takes two parameters: CaptureSettings and a base64 license key String See MethodChannelCaptureFlutter for more detailed information.

Implementation

Future<AnalyzerResult?> scanWithCamera(
    CaptureSettings captureSettings, String license) {
  return MethodChannelCaptureFlutter()
      .scanWithCamera(captureSettings, license);
}