CachedImageModel constructor

CachedImageModel({
  1. required int createdAt,
  2. required Uint8List data,
  3. required String filename,
  4. int? futureRefresh,
  5. int id = 0,
})

Implementation

CachedImageModel(
    {required this.createdAt,
    required this.data,
    required this.filename,
    this.futureRefresh,
    this.id = 0});