StudentDto typedef

StudentDto = ({String? id, String? name})

Student enrolled in an i-School Plus course.

Implementation

typedef StudentDto = ({
  /// Student's NTUT ID (e.g., "111360109").
  String? id,

  /// Student's full name.
  String? name,
});