fromJsonAsync<O> abstract method

FutureOr<O?> fromJsonAsync<O>(
  1. Object? o, {
  2. Type? type,
  3. TypeInfo? typeInfo,
  4. bool duplicatedEntitiesAsID = false,
  5. bool? autoResetEntityCache,
})

Converts o to type allowing async calls (Future and FutureOr).

Implementation

FutureOr<O?> fromJsonAsync<O>(Object? o,
    {Type? type,
    TypeInfo? typeInfo,
    bool duplicatedEntitiesAsID = false,
    bool? autoResetEntityCache});