$getProperty method
Get a property by identifier on this instance
Implementation
@override
$Value? $getProperty(Runtime runtime, String identifier) {
switch (identifier) {
case 'path':
return $String($value.path);
case 'isOpen':
return $bool($value.isOpen);
case 'close':
return __close;
case 'transaction':
return __transaction;
case 'readTransaction':
return __readTransaction;
}
return _superclass.$getProperty(runtime, identifier);
}