showDocumentCamera method

  1. @override
Future showDocumentCamera({
  1. bool isBack = false,
})
override

Implementation

@override
Future showDocumentCamera({isBack = false}) async {
  final res = await methodChannel
      .invokeMethod('SHOW_DOCUMENT_CAMERA', {"isBack": isBack});
  return res;
}