10 lines
313 B
Dart
10 lines
313 B
Dart
class Assets {
|
|
static const String _basePath = 'lib/assets';
|
|
static const String _baseImagesPath = _basePath + '/images';
|
|
|
|
static const String verticalLogoWithText =
|
|
_baseImagesPath + '/logo/logo-v-t.png';
|
|
static const String horizontalLogoWithText =
|
|
_baseImagesPath + '/logo/logo-h-t.png';
|
|
}
|