copyWithWrapped method
Implementation
WebApiModulesAdministratorPluginStatusResponse copyWithWrapped({
Wrapped<bool?>? success,
Wrapped<String?>? responseText,
}) {
return WebApiModulesAdministratorPluginStatusResponse(
success: (success != null ? success.value : this.success),
responseText: (responseText != null
? responseText.value
: this.responseText),
);
}