fromJsonMapAsync<O> abstract method

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

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

Implementation

FutureOr<O> fromJsonMapAsync<O>(FutureOr<Map<String, Object?>> map,
    {Type? type,
    TypeInfo? typeInfo,
    bool duplicatedEntitiesAsID = false,
    bool? autoResetEntityCache});