copyWith method

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

Implementation

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