10 lines
346 B
Dart
10 lines
346 B
Dart
// This version must be updated in tandem with the pubspec version.
|
|
const String kAppVersion = '0.0.1';
|
|
const int kMinMajorAppVersion = 4;
|
|
const int kMinMinorAppVersion = 5;
|
|
|
|
const int kMaxRecordsPerApiPage = 5000;
|
|
const int kMillisecondsToRefreshData = 1000 * 60 * 15; // 15 minutes
|
|
|
|
const int kCurrencyUSDollar = 1;
|
|
const int kCurrencyEuro = 3; |