toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final courseId = this.courseId;
  final profile = this.profile;
  final studentWorkFolder = this.studentWorkFolder;
  final userId = this.userId;
  return {
    'courseId': ?courseId,
    'profile': ?profile,
    'studentWorkFolder': ?studentWorkFolder,
    'userId': ?userId,
  };
}