CachePrePopulate.fromJson constructor

CachePrePopulate.fromJson(
  1. Map json_
)

Implementation

CachePrePopulate.fromJson(core.Map json_)
  : this(
      excludePathList: (json_['excludePathList'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      pathList: (json_['pathList'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      recursion: json_['recursion'] as core.bool?,
    );