copyWith method

TimeZone copyWith({
  1. String? id,
  2. String? name,
  3. int? utcTimeOffset,
})

Implementation

TimeZone copyWith({String? id, String? name, int? utcTimeOffset}) => TimeZone(
  id: id ?? this.id,
  name: name ?? this.name,
  utcTimeOffset: utcTimeOffset ?? this.utcTimeOffset,
);