This repository has been archived on 2025-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
OpenContacts/lib/apis/friends_api.dart
2023-04-29 19:18:46 +02:00

9 lines
No EOL
148 B
Dart

import 'package:contacts_plus/models/friend.dart';
class FriendsApi {
static Future<List<Friend>> getFriendsList() async {
return [];
}
}