You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
532 B

2 years ago
  1. class Strings {
  2. static const usersCollectionName = 'users';
  3. static const queueCollectionName = 'queue';
  4. static const matchedCollectionName = 'matched';
  5. static const idFieldName = 'id';
  6. static const myuidFieldName = 'myuid';
  7. static const otheruidFieldName = 'otheruid';
  8. static const mylistFieldName = 'mylist';
  9. static const otherlistFieldName = 'otherlist';
  10. static const mymovesFieldName = 'mymoves';
  11. static const othermovesFieldName = 'othermoves';
  12. }
  13. const defaultImagePath = 'assets/images/default_image.png';