copyWith method

EventRolesGet$Response copyWith({
  1. int? count,
  2. String? next,
  3. String? previous,
  4. List<EventRole>? results,
})

Implementation

EventRolesGet$Response copyWith(
    {int? count, String? next, String? previous, List<EventRole>? results}) {
  return EventRolesGet$Response(
      count: count ?? this.count,
      next: next ?? this.next,
      previous: previous ?? this.previous,
      results: results ?? this.results);
}