copyWithWrapped method

WebApiModulesAdministratorPluginStatusResponse copyWithWrapped({
  1. Wrapped<bool?>? success,
  2. Wrapped<String?>? responseText,
})

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