toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final columnIndex = this.columnIndex;
  final rowIndex = this.rowIndex;
  final sheetId = this.sheetId;
  return {
    'columnIndex': ?columnIndex,
    'rowIndex': ?rowIndex,
    'sheetId': ?sheetId,
  };
}