EditableRow typedef

EditableRow = Map<String, String>

One row of data — a column-key → cell-value map. Values are kept as strings (what the user types); the host parses on read. Kept deliberately generic so the widget carries no business-model coupling.

Implementation

typedef EditableRow = Map<String, String>;