toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (courseId != null) 'courseId': courseId!,
  if (id != null) 'id': id!,
  if (role != null) 'role': role!,
  if (userId != null) 'userId': userId!,
};