copyWith method

WebApiModulesAdministratorPluginStatusResponse copyWith({
  1. bool? success,
  2. String? responseText,
})

Implementation

WebApiModulesAdministratorPluginStatusResponse copyWith({
  bool? success,
  String? responseText,
}) {
  return WebApiModulesAdministratorPluginStatusResponse(
    success: success ?? this.success,
    responseText: responseText ?? this.responseText,
  );
}