toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final instituteSize = this.instituteSize;
final instituteType = this.instituteType;
final website = this.website;
return {
'instituteSize': ?instituteSize,
'instituteType': ?instituteType,
'website': ?website,
};
}