$getProperty method
Get a property by identifier
on this instance
Implementation
@override
$Value? $getProperty(Runtime runtime, String identifier) {
switch (identifier) {
case 'key':
return key as $Value?;
case 'value':
return value as $Value?;
default:
return _superclass.$getProperty(runtime, identifier);
}
}