SentryCulture.fromJson constructor
Implementation
factory SentryCulture.fromJson(Map<String, dynamic> data) {
final json = AccessAwareMap(data);
return SentryCulture(
calendar: json['calendar'],
displayName: json['display_name'],
locale: json['locale'],
is24HourFormat: json['is_24_hour_format'],
timezone: json['timezone'],
unknown: json.notAccessed(),
);
}