copyWith method

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

Implementation

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