cached_network 1.0.6
cached_network: ^1.0.6 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.
import 'package:cached_network/cached_network.dart';
void main() async {
var network = CachedNetwork();
await network.request('https://google.com');
}