deleteNotificationsGroup method
DELETE /{version}/account/projects/{projectId}/notifications/settings/group
Implementation
Future<Object?> deleteNotificationsGroup(
{Object? projectId,
Map<String, Object?>? query,
Object? body,
Map<String, String>? headers}) {
return transport.send(
route:
'/{version}/account/projects/{projectId}/notifications/settings/group',
method: 'DELETE',
query: query,
body: body,
headers: headers,
pathParams: <String, Object?>{'projectId': projectId},
);
}