Files
flutter_server_box/lib/data/model/app/github_id.dart
2023-08-05 14:32:21 +08:00

6 lines
102 B
Dart

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