Apply<S, T> constructor
const
Apply<S, T> (
- T transform(
- S?
- Cast<
S> first
Implementation
const Apply(T Function(S?) transform, Cast<S> first)
: _transform = transform,
_first = first;