toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final gate = this.gate;
final kind = this.kind;
final row = this.row;
final seat = this.seat;
final section = this.section;
return {
'gate': ?gate,
'kind': ?kind,
'row': ?row,
'seat': ?seat,
'section': ?section,
};
}