import 'package:json_annotation/json_annotation.dart'; part 'practice.g.dart'; @JsonSerializable() class Practice { final int? id; final String? title; final String? status; final String? persona; final String? description; @JsonKey(name: 'owner_id') final int? ownerId; @JsonKey(name: 'set_type') final String? setType; @JsonKey(name: 'owner_type') final String? ownerType; @JsonKey(name: 'intro_video_url') final String? introVideoUrl; @JsonKey(name: 'shuffle_questions') final bool? shuffleQuestions; @JsonKey(name: 'time_limit_minutes') final int? timeLimitMinutes; const Practice( {this.id, this.title, this.status, this.setType, this.persona, this.ownerId, this.ownerType, this.description, this.introVideoUrl, this.shuffleQuestions, this.timeLimitMinutes}); factory Practice.fromJson(Map json) => _$PracticeFromJson(json); Map toJson() => _$PracticeToJson(this); }