setIgnoreLinkFlag abstract method

Future<CommandResponse> setIgnoreLinkFlag({
  1. required String deviceId,
  2. required bool enabled,
})

Sets whether to ignore the link flag for composite codes.

deviceId - The identifier of the target device. enabled - A boolean indicating whether to ignore (true) or not ignore (false) the link flag.

Returns a CommandResponse indicating the success or failure of the operation.

Implementation

Future<CommandResponse> setIgnoreLinkFlag({
  required String deviceId,
  required bool enabled,
});