identity<T> function
T
identity<T>(
- T value
A functions that directly returns whatever was given to it.
Implementation
T identity<T>(T value) => value;
A functions that directly returns whatever was given to it.
T identity<T>(T value) => value;