file_cache 0.0.2 copy "file_cache: ^0.0.2" to clipboard
file_cache: ^0.0.2 copied to clipboard

outdated

File cached Json,Buffer,FileCacheImage for flutter package project.

file_cache #

File cached Json,Buffer,FileCacheImage for flutter package project.

Dart2 Ready

Getting Started #

import 'package:file_cache/file_cache.dart';

// Create the instance of FileCache
FileCache fileCache = await FileCache.fromDefault();

// Usage: get Json map
Map data = await fileCache.getJson('http://httpbin.org/cache/600');

// Usage: get bytes
Uint8List bytes = await fileCache.getBytes('http://httpbin.org/images/jpeg');

// Usage: replace NetworkImage
new Image(
    fit: BoxFit.cover,
    image: new FileCacheImage('http://httpbin.org/images/jpeg'),
);

// Usage: clean file cache
await fileCache.clean();

// Usage: statistics
print(fileCache.stats.toString());
// "Bytes(Memory): $bytesInMemory\n"
// "Miss(Memory): $missInMemory\n"
// "Hit(Memory): $hitMemory\n"
// "Hit(Files): $hitFiles\n"
// "Bytes(File): $bytesInFile\n"
// "Bytes Read from File: $bytesRead\n"
// "Bytes download: $bytesDownload";
5
likes
0
pub points
67%
popularity

Publisher

unverified uploader

File cached Json,Buffer,FileCacheImage for flutter package project.

Repository
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, path_provider, quiver

More

Packages that depend on file_cache