opreationFlashLight method
Implementation
Future<void> opreationFlashLight(bool status) async {
try {
await methodChannel
.invokeMethod('opreationFlashLight', {"status": status});
} on PlatformException catch (e) {
print("opreationFlashLight '${e.message}'.");
}
}