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