decodeAsync<T> abstract method

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

Decodes encodedJson to a JSON collection/data accepting async values.

Implementation

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