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