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

outdatedDart 1 only

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

file_cache #

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

Getting Started #

import 'package:file_cache/file_cache.dart';

// Provider a Loader function for Http request;
Future<HttpClientResponse> loader(String url) async {
  final Uri uri = Uri.parse(url);

  HttpClientRequest request = await httpClient.getUrl(uri);
  return await request.close();
}

// Create the instance of FileCache
FileCache fileCache = await FileCache.fromDefault(
  httpClient: httpClient,
  loader: loader,
);

// Usage: get Json map
Map data = await fileCache.getJson(url);

// Usage: get bytes
Uint8List bytes = await fileCache.getBytes(url);

// Usage: replace NetworkImage
new Image(
    fit: BoxFit.cover,
    image: new FileCacheImage(url),
);

// 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"
// "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