8 lines
110 B
Dart

// #docregion
class EditItem<T> {
bool editing = false;
T item;
EditItem(this.item);
}
// #enddocregion