cached_network 2.1.0 cached_network: ^2.1.0 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');
}