getDisabledAppList method
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,
);
}