TourAccess.fromJson constructor
Implementation
factory TourAccess.fromJson(Map<String, dynamic> json) => TourAccess(
interaction: Interaction.fromJson(json),
tourUuid: json["tour_uuid"],
enableSignLanguageSelected: json["enable_sign_language_selected"],
enableSubtitlesSelected: json["enable_subtitles_selected"],
enableAudioDescriptionSelected: json["enable_audio_description_selected"],
timeElapsed: json["time_elapsed"],
);