createComment<T> method

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

Adds a new comment on a note.

Implementation

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