ListCopyWith<$R, $E, $C> constructor

ListCopyWith<$R, $E, $C>(
  1. List<$E> value,
  2. ItemCopyWith<$C, $E, $R> item,
  3. Then<List<$E>, $R> then
)

Implementation

factory ListCopyWith(
  List<$E> value,
  ItemCopyWith<$C, $E, $R> item,
  Then<List<$E>, $R> then,
) = _ListCopyWith;