Student constructor

const Student({
  1. required int id,
  2. required String studentId,
  3. String? name,
})

Implementation

const Student({required this.id, required this.studentId, this.name});