Sonnat Project
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.

8 lines
109 B

  1. enum Languages {
  2. fa('fa'),
  3. en('en'),
  4. ar('ar');
  5. const Languages(this.value);
  6. final String value;
  7. }