mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-18 07:44:26 +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 ';
|
|
}
|