Checks if the torch is available on the device.
@override Future<bool> isTorchAvailable() async { final result = await methodChannel.invokeMethod<bool>('torch_available'); return result ?? false; }