toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final fields = this.fields;
final rows = this.rows;
final sheetId = this.sheetId;
final tableId = this.tableId;
return {
'fields': ?fields,
'rows': ?rows,
'sheetId': ?sheetId,
'tableId': ?tableId,
};
}