initialData property
Initial Data for Table. Example:
List<SpreadsheetRow> _data = [
SpreadsheetRow(
id: "UniqueId1",
cells: {"Product": "Jean", "Quantity": "3", "Status": "Delivered"}),
SpreadsheetRow(
id: "UniqueId2",
cells: {"Product": "Shirt", "Quantity": "2", "Status": "Delivered"}),
];
// Product Quantity Status are table headers
Implementation
final List<SpreadsheetRow> initialData;