testScanResult method
For testing scan results
Implementation
@override
Future<bool> testScanResult() async {
try {
return await methodChannel.invokeMethod<bool>('testScanResult') ?? false;
} catch (e) {
debugPrint('Error sending test scan result: $e');
return false;
}
}