startDecode method

  1. @override
Future<bool> startDecode()
override

启动扫描,扫描头出光

Implementation

@override
Future<bool> startDecode() async {
  final v = await methodChannel.invokeMethod<bool>("startDecode");
  return v ?? false;
}