toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowMissing = this.allowMissing;
final inventory = this.inventory;
final setMask = this.setMask;
final setTime = this.setTime;
return {
'allowMissing': ?allowMissing,
'inventory': ?inventory,
'setMask': ?setMask,
'setTime': ?setTime,
};
}