capturePreview method

Implementation

Future<MLGeneralCard> capturePreview(
  MLGeneralCardAnalyzerSetting setting,
) async {
  return MLGeneralCard.fromJson(
    await _channel.invokeMethod(
      'capturePreview',
      setting.toMap(),
    ),
  );
}