mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 15:24:35 +01:00
6 lines
102 B
Dart
6 lines
102 B
Dart
typedef GhId = String;
|
|
|
|
extension GhIdX on GhId {
|
|
String get url => 'https://github.com/$this ';
|
|
}
|