relatica/lib/utils/network_utils.dart

6 wiersze
167 B
Dart
Czysty Zwykły widok Historia

import '../models/auth/profile.dart';
Uri generateTagUrlFromProfile(Profile profile, String tag) {
return Uri.https(profile.serverName, '/search', {'tag': tag});
}