$getProperty method
Get a property by identifier on this instance
Implementation
@override
$Value? $getProperty(Runtime runtime, String identifier) {
switch (identifier) {
case 'id':
final _id = $value.id;
return _id == null ? const $null() : $String(_id);
}
return _superclass.$getProperty(runtime, identifier);
}