getDisabledAppList method

Future<void> getDisabledAppList({
  1. String? commandTag,
  2. bool requestResult = true,
})

Retrieves the list of apps where DataWedge is disabled.

The result is delivered as a command result event on the events stream.

Implementation

Future<void> getDisabledAppList({
  String? commandTag,
  bool requestResult = true,
}) {
  return _sendQueryCommand(
    command: DataWedgeApi.getDisabledAppList,
    commandTag: commandTag ?? 'GET_DISABLED_APP_LIST',
    requestResult: requestResult,
  );
}