ListStudentsResponse constructor

ListStudentsResponse({
  1. String? nextPageToken,
  2. List<Student>? students,
})

Implementation

ListStudentsResponse({
  this.nextPageToken,
  this.students,
});