Skip to content

Instantly share code, notes, and snippets.

View nguthiru's full-sized avatar
💭
Bored

Edwin Ndiritu nguthiru

💭
Bored
  • Meevy
View GitHub Profile
@nguthiru
nguthiru / data_cache.dart
Last active March 27, 2023 07:37
Dart HTTP base package with caching
import 'dart:convert';
import 'package:shared_preferences/shared_preferences.dart';
import 'package:soul_date/services/network.dart';
import '../constants/constants.dart';
class DataCache {
static final DataCache _instance = DataCache._internal();
factory DataCache() => _instance;