Advertisement
alvinvin00

constants.dart

Mar 18th, 2019
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.24 KB | None | 0 0
  1. class Constants {
  2.   static const String search = 'Search';
  3.   static const String profile = 'Profile';
  4.   static const String signout = 'Sign Out';
  5.  
  6.   static const List<String> choices = <String>[
  7.     search,
  8.     profile,
  9.     signout,
  10.   ];
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement