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.

9 lines
170 B

2 years ago
  1. extension StringExtension on String {
  2. String get pngPath {
  3. return 'assets/images/$this.png';
  4. }
  5. String get rivePath {
  6. return 'assets/rive/$this.riv';
  7. }
  8. }