toJson method
Implementation
Map<String, Object?> toJson() {
var theColumnPositionOfTheGadget = this.theColumnPositionOfTheGadget;
var theRowPositionOfTheGadget = this.theRowPositionOfTheGadget;
final json = <String, Object?>{};
json[r'The column position of the gadget.'] = theColumnPositionOfTheGadget;
json[r'The row position of the gadget.'] = theRowPositionOfTheGadget;
return json;
}