copyWith method

OnceEventSeverity copyWith({
  1. int? id,
  2. String? description,
})

Implementation

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