CourseRosterChangesInfo.fromJson constructor

CourseRosterChangesInfo.fromJson(
  1. Map json_
)

Implementation

CourseRosterChangesInfo.fromJson(core.Map json_)
    : this(
        courseId: json_.containsKey('courseId')
            ? json_['courseId'] as core.String
            : null,
      );