15 lines
510 B
Dart
15 lines
510 B
Dart
class AppStrings {
|
|
AppStrings._();
|
|
|
|
static const String home = 'Home';
|
|
|
|
static const String partnership = 'Partnership';
|
|
static const String selfApply = 'Self-apply';
|
|
static const String contracting = 'Contracting';
|
|
static const String tenderSubmitting = 'Tender submitting';
|
|
static const String approvedTenders = 'Approved tenders';
|
|
static const String tenderValue = 'Tender Value';
|
|
static const String thunderStatus = 'Thunder status';
|
|
static const String yourTenders = 'Your tenders';
|
|
}
|