copyWith method

FormsFieldItemState<T> copyWith({
  1. List<T>? itemList,
})

Implementation

FormsFieldItemState<T> copyWith({List<T>? itemList}) =>
    FormsFieldItemState(itemList: itemList ?? this.itemList);