Returns the current torch state (true if on, false if off).
@override Future<bool> isTorchOn() async { final result = await methodChannel.invokeMethod<bool>('is_torch_on'); return result ?? false; }