DataCacheConfig.fromJson constructor

DataCacheConfig.fromJson(
  1. Map json_
)

Implementation

DataCacheConfig.fromJson(core.Map json_)
    : this(
        dataCacheEnabled: json_.containsKey('dataCacheEnabled')
            ? json_['dataCacheEnabled'] as core.bool
            : null,
      );