$getProperty method
Get a property by identifier
on this instance
Implementation
@override
$Value? $getProperty(Runtime runtime, String identifier) {
switch (identifier) {
case 'encodeMethodCall':
return __encodeMethodCall;
case 'decodeMethodCall':
return __decodeMethodCall;
case 'encodeSuccessEnvelope':
return __encodeSuccessEnvelope;
case 'encodeErrorEnvelope':
return __encodeErrorEnvelope;
case 'decodeEnvelope':
return __decodeEnvelope;
default:
return _superclass.$getProperty(runtime, identifier);
}
}