CourseNotifyData constructor

CourseNotifyData({
  1. int version = 2,
  2. int lastId = 1,
  3. List<CourseNotify> data = const <CourseNotify>[],
})

Implementation

CourseNotifyData({
  this.version = 2,
  this.lastId = 1,
  this.data = const <CourseNotify>[],
});