dco_decode_connection_type method

  1. @protected
ConnectionType dco_decode_connection_type(
  1. dynamic raw
)

Implementation

@protected
ConnectionType dco_decode_connection_type(dynamic raw) {
  // Codec=Dco (DartCObject based), see doc to use other codecs
  return ConnectionType.values[raw as int];
}