decode method
Implementation
@override
OuterEnumMetadata decode(Input input) {
final callType = TypeIdCodec.codec.decode(input);
final eventType = TypeIdCodec.codec.decode(input);
final errorType = TypeIdCodec.codec.decode(input);
return OuterEnumMetadata(
callType: callType,
eventType: eventType,
errorType: errorType,
);
}