cached_network 0.0.2
cached_network: ^0.0.2 copied to clipboard
A package use to fetch data from web and write as string into cache directory and provide a widget use to view caches.
example/cached_network.dart
import 'package:cached_network/cached_network.dart';
void main() async {
var network = CachedNetwork();
await network.fetch('https://google.com');
}