32 lines
901 B
Dart
32 lines
901 B
Dart
import 'package:flutter_contacts/flutter_contacts.dart';
|
|
|
|
// Service to manage contact-related operations
|
|
class ContactService {
|
|
Future<List<Contact>> fetchContacts() async {
|
|
if (await FlutterContacts.requestPermission()) {
|
|
return await FlutterContacts.getContacts(
|
|
withProperties: true,
|
|
withThumbnail: true,
|
|
withAccounts: true,
|
|
withGroups: true,
|
|
withPhoto: true);
|
|
}
|
|
return [];
|
|
}
|
|
|
|
Future<List<Contact>> fetchFavoriteContacts() async {
|
|
// Fetch all contacts
|
|
List<Contact> contacts = await fetchContacts();
|
|
|
|
// Filter contacts to only include those with isStarred: true
|
|
List<Contact> favoriteContacts =
|
|
contacts.where((contact) => contact.isStarred).toList();
|
|
|
|
return favoriteContacts;
|
|
}
|
|
|
|
Future<void> addNewContact(Contact contact) async {
|
|
await FlutterContacts.insertContact(contact);
|
|
}
|
|
}
|