decodeFromBytesAsync<T> abstract method

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

Sames as decodeAsync but from a Uint8List.

Implementation

FutureOr<T> decodeFromBytesAsync<T>(FutureOr<Uint8List> encodedJsonBytes,
    {Type? type,
    TypeInfo? typeInfo,
    bool duplicatedEntitiesAsID = false,
    bool? autoResetEntityCache});