copyWith method

TeacherPositionData copyWith({
  1. String? id,
  2. String? name,
})

Implementation

TeacherPositionData copyWith({String? id, String? name}) =>
    TeacherPositionData(id: id ?? this.id, name: name ?? this.name);