toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cellLocation = this.cellLocation;
  final insertBelow = this.insertBelow;
  final number = this.number;
  final tableObjectId = this.tableObjectId;
  return {
    'cellLocation': ?cellLocation,
    'insertBelow': ?insertBelow,
    'number': ?number,
    'tableObjectId': ?tableObjectId,
  };
}