ConvertCallback<T, R> typedef
ConvertCallback<T, R> =
R Function(T)
A Function that converts an instance of T
to an instance of R
.
Implementation
typedef ConvertCallback<T, R> = R Function(T);
A Function that converts an instance of T
to an instance of R
.
typedef ConvertCallback<T, R> = R Function(T);