isMap property
bool
get
isMap
Implementation
bool get isMap {
const key = '__flujs_internal_isMap__';
return _typeCheckInJS(
key,
'''
var t = typeof v;
if (t === 'object') { return v instanceof Map; }
return false;
''',
['v'],
);
}