copyWith method

SentryCulture copyWith({
  1. String? calendar,
  2. String? displayName,
  3. String? locale,
  4. bool? is24HourFormat,
  5. String? timezone,
})

Implementation

SentryCulture copyWith({
  String? calendar,
  String? displayName,
  String? locale,
  bool? is24HourFormat,
  String? timezone,
}) =>
    SentryCulture(
      calendar: calendar ?? this.calendar,
      displayName: displayName ?? this.displayName,
      locale: locale ?? this.locale,
      is24HourFormat: is24HourFormat ?? this.is24HourFormat,
      timezone: timezone ?? this.timezone,
    );