deleteGroup method
Implementation
Future<void> deleteGroup({
required String groupId,
}) async {
ArgumentError.checkNotNull(groupId, 'groupId');
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/greengrass/groups/${Uri.encodeComponent(groupId)}',
exceptionFnMap: _exceptionFns,
);
}