fromJson method

Object? fromJson(
  1. dynamic json, {
  2. JsonDecoder? jsonDecoder,
  3. bool duplicatedEntitiesAsID = true,
  4. bool? autoResetEntityCache,
})

Implementation

Object? fromJson(
  dynamic json, {
  JsonDecoder? jsonDecoder,
  bool duplicatedEntitiesAsID = true,
  bool? autoResetEntityCache,
}) {
  return _fromJsonImpl(
    json,
    jsonDecoder,
    duplicatedEntitiesAsID,
    autoResetEntityCache,
  );
}