redux_remote_devtools library

Enums

RemoteDevToolsStatus
The connection state of the middleware

Properties

JsonActionEncoder ActionEncoder
An action encoder that converts an action to stringified JSON
getter/setter pair
JsonStateEncoder StateEncoder
A State encoder that converts a state instances to stringified JSON
getter/setter pair
NopActionDecoder ActionDecoder
An action decoder that simply passes through the JSON unmodified
getter/setter pair

Typedefs

ActionDecoder = dynamic Function(dynamic json)
Interface for custom remote action decoding logic. Converts a JSON payload from remote devtools to an action
ActionEncoder = String Function(dynamic action)
Interface for custom action encoding logic. Converts an action into a string suitable for sending to devtools
SocketFactory = Future<Socket> Function(String url)
StateEncoder<State> = String Function(State state)
Interface for custom State encoding logic Converts a State instance into a string suitable for sending to devtools