$getProperty method
Get a property by identifier
on this instance
Implementation
@override
$Value? $getProperty(Runtime runtime, String identifier) {
switch (identifier) {
case 'add':
return __add;
case 'addAll':
return __addAll;
case 'contains':
return __contains;
case 'remove':
return __remove;
case 'clear':
return __clear;
case 'lookup':
return __lookup;
case 'intersection':
return __intersection;
case 'union':
return __union;
case 'difference':
return __difference;
}
return _superclass.$getProperty(runtime, identifier);
}