registerInboundAdapter static method
Register a Python -> Dart adapter.
Implementation
static void registerInboundAdapter(
String type,
dynamic Function(dynamic payload) decode,
) {
_inboundAdapters[type] = _InboundAdapter(type: type, decode: decode);
}