decode method

void decode(
  1. dynamic state
)
inherited

Read state from json-like object

Possible values are:

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

Implementation

void decode(dynamic state) {}