copyWith method
Implementation
OnceEventSeverity copyWith({int? id, String? description}) {
return OnceEventSeverity(
id: id ?? this.id, description: description ?? this.description);
}
OnceEventSeverity copyWith({int? id, String? description}) {
return OnceEventSeverity(
id: id ?? this.id, description: description ?? this.description);
}