mc_gallery/lib/features/core/data/constants/const_values.dart

12 lines
380 B
Dart

abstract class ConstValues {
static const String httpsScheme = 'https';
static const String backendHost = 'source.unsplash.com';
static const List<String> backendUrlPathSegments = ['user', 'c_v_r'];
static const int numberOfImages = 20;
static const int minImageSize = 50;
static const int maxImageSize = 100;
static const int defaultEmulatedLatencyMillis = 75;
}