cached_network 1.0.1
cached_network: ^1.0.1 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.request('https://google.com');
}