toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final kind = this.kind;
final licensedNumberOfSeats = this.licensedNumberOfSeats;
final maximumNumberOfSeats = this.maximumNumberOfSeats;
final numberOfSeats = this.numberOfSeats;
return {
'kind': ?kind,
'licensedNumberOfSeats': ?licensedNumberOfSeats,
'maximumNumberOfSeats': ?maximumNumberOfSeats,
'numberOfSeats': ?numberOfSeats,
};
}