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

ListCopyWith<$R, $T, $C>(
  1. List<$T> value,
  2. $C itemCopyWith(
    1. $T a,
    2. Then<$T, $R> b
    ),
  3. Then<List<$T>, $R> then
)

Implementation

ListCopyWith(List<$T> value, this.itemCopyWith, Then<List<$T>, $R> then)
    : super(value, then);