School constructor

School({
  1. required int id,
  2. required String name,
})

Implementation

School({required this.id, required this.name});