buildItem method
void
buildItem(
- T item
Implementation
void buildItem(T item) {
state.forEach((key, controller) {
// jsonItem[key] = controller.text;
item.copyWith({key: controller.text});
debugPrint("[[item with $key]]: $item");
});
}