copyWith method

TimeZones copyWith({
  1. List<TimeZone>? timeZones,
})

Implementation

TimeZones copyWith({List<TimeZone>? timeZones}) =>
    TimeZones(timeZones: timeZones ?? this.timeZones);