decode<T> abstract method

T decode<T>(
  1. String encodedJson, {
  2. Type? type,
  3. TypeInfo? typeInfo,
  4. bool duplicatedEntitiesAsID = false,
  5. bool? autoResetEntityCache,
})

Decodes encodedJson to a JSON collection/data.

Implementation

T decode<T>(
  String encodedJson, {
  Type? type,
  TypeInfo? typeInfo,
  bool duplicatedEntitiesAsID = false,
  bool? autoResetEntityCache,
});