delete method

Future<void> delete(
  1. String groupId
)

Deletes a group.

Does not delete the contacts in the group, only removes the group association.

Implementation

Future<void> delete(String groupId) async {
  await _channel.invokeMethod('groups.delete', {'groupId': groupId});
}