CacheFragment.fromMap constructor

CacheFragment.fromMap(
  1. Map map
)

Implementation

CacheFragment.fromMap(Map map) {
  file = map['file'] != null ? File(map['file'] as String) : null;
  begin = map['begin'] as int;
  end = map['end'] as int;
  expected = map['expected'] as int;
}