add invoice pdf

This commit is contained in:
Sai Naw Wun
2020-10-26 04:41:24 +06:30
parent feec3c8687
commit 2786acfd08
33 changed files with 787 additions and 1114 deletions

View File

@@ -0,0 +1,12 @@
import 'package:flutter_cache_manager/flutter_cache_manager.dart';
class PdfCacheMgr {
static const key = 'pdfs';
static CacheManager pdfs = CacheManager(
Config(
key,
stalePeriod: const Duration(days: 7),
maxNrOfCacheObjects: 20,
),
);
}