delete<T> method

Future<ApiResponse<T>> delete<T>(
  1. Map<String, Object> params
)

Deletes a note of the current user.

Implementation

Future<ApiResponse<T>> delete<T>(Map<String, Object> params) =>
    _api.request<T>('notes.delete', params);