school property

  1. @override
IPrepSchool? get school
override

Property getter and setter for school:

Implementation

@override IPrepSchool? get school => _school;
  1. @override
set school (IPrepSchool? school)
override

Implementation

@override set school(IPrepSchool? school) {
  this._school = school;
  wrapped['school'] = jsonLiteral(school);
}