deleteTemplate method

Future<XRPCResponse<EmptyData>> deleteTemplate({
  1. required String id,
  2. Map<String, String>? $unknown,
  3. Map<String, String>? $headers,
  4. PostClient? $client,
})

Implementation

Future<XRPCResponse<EmptyData>> deleteTemplate({
  required String id,
  Map<String, String>? $unknown,
  Map<String, String>? $headers,
  PostClient? $client,
}) async =>
    await _ctx.post<EmptyData>(
      ns.toolsOzoneCommunicationDeleteTemplate,
      headers: $headers,
      body: {
        'id': id,
        ...?$unknown,
      },
      client: $client,
    );