invoice/lib/utils/keys.dart

15 lines
622 B
Dart

// Keys for Login Screen
class LoginKeys {
static const String emailKeyString = 'loginEmail';
static const String passwordKeyString = 'loginPassword';
static const String urlKeyString = 'loginUrl';
static const String secretKeyString = 'loginSecret';
}
// Keys for Product Screen
class ProductKeys {
static const String productScreenFABKeyString = 'productScreenFAB';
static const String productEditProductFieldKeyString = 'productEditProductField';
static const String productEditNotesFieldKeyString = 'productEditNotesField';
static const String productEditCostFieldKeyString = 'productEditCostField';
}