resetDefaultProfile method
Resets the default profile to the DataWedge system default.
Implementation
Future<void> resetDefaultProfile({
String? commandTag,
bool requestResult = true,
}) {
return sendCommand(
command: DataWedgeApi.resetDefaultProfile,
value: '',
commandTag: commandTag ?? 'RESET_DEFAULT_PROFILE',
requestResult: requestResult,
);
}