Files
flutter_server_box/lib/data/model/app/github_id.dart
lollipopkit 685faa0627 #152 fix
2023-08-30 13:44:19 +08:00

6 lines
100 B
Dart

typedef GhId = String;
extension GhIdX on GhId {
String get url => 'https://github.com/$this';
}