decode method

void decode(
  1. dynamic state
)

Read state from json-like object

Possible values are:

  • Base DartType - bool, int, double, string, etc.
  • List
  • Map<String, DartType> - map of objects of base dart type, list or map

Implementation

void decode(dynamic state) {}