resetDefaultProfile method

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

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