copyWith method

Timezone copyWith({
  1. int? id,
  2. String? name,
})

Implementation

Timezone copyWith({int? id, String? name}) {
  return Timezone(id: id ?? this.id, name: name ?? this.name);
}