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