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