removeContactList method

  1. @override
Future<void> removeContactList(
  1. String pubKey
)
override

Implementation

@override
Future<void> removeContactList(String pubKey) async {
  isar.write((isar) {
    isar.dbContactLists.delete(pubKey);
  });
}