buildItem method

void buildItem(
  1. 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");
  });
}