has<T> abstract method
Check if the data contains a specific type.
{String, 'Hello, World!'}
data.has<String>(); // true
Implementation
bool has<T>();
Check if the data contains a specific type.
{String, 'Hello, World!'}
data.has<String>(); // true
bool has<T>();