setIgnoreDisabledProfiles method
Sets whether DataWedge should ignore disabled profiles.
When ignoreDisabledProfiles is true, disabled profiles are skipped
during profile selection.
Implementation
Future<void> setIgnoreDisabledProfiles(
bool ignoreDisabledProfiles, {
String? commandTag,
bool requestResult = true,
}) {
return sendCommand(
command: DataWedgeApi.setIgnoreDisabledProfiles,
value: dataWedgeBool(ignoreDisabledProfiles),
commandTag: commandTag ?? 'SET_IGNORE_DISABLED_PROFILES',
requestResult: requestResult,
);
}