hasIrEmitter property

Future<bool> hasIrEmitter

Check whether the device has an infrared emitter.

Returns "true" if the device has an infrared emitter, else "false" .

Implementation

static Future<bool> get hasIrEmitter async {
  final bool hasIrEmitter = await _channel.invokeMethod('hasIrEmitter');
  return hasIrEmitter;
}