copyWith method
EventCollectionsGet$Response
copyWith({
- int? count,
- String? next,
- String? previous,
- List<
EventCollection> ? results,
Implementation
EventCollectionsGet$Response copyWith(
{int? count,
String? next,
String? previous,
List<EventCollection>? results}) {
return EventCollectionsGet$Response(
count: count ?? this.count,
next: next ?? this.next,
previous: previous ?? this.previous,
results: results ?? this.results);
}