ObjectCopyWith<Result, In, Out> constructor

const ObjectCopyWith<Result, In, Out>(
  1. In value,
  2. Then<In, Out> then,
  3. Then<Out, Result> then2
)

Implementation

const factory ObjectCopyWith(
    In value, Then<In, Out> then, Then<Out, Result> then2) = CopyWithBase;