createNote method

Future<DynamiteResponse<Note, void>> createNote({
  1. String? category,
  2. String? title,
  3. String? content,
  4. int? modified,
  5. int? favorite,
})

Returns a Future containing a DynamiteResponse with the status code, deserialized body and headers. Throws a DynamiteApiException if the API call does not return an expected status code.

Parameters:

  • category Defaults to ''.
  • title Defaults to ''.
  • content Defaults to ''.
  • modified Defaults to 0.
  • favorite Defaults to 0.

Status codes:

  • 200

See:

  • createNoteRaw for an experimental operation that returns a DynamiteRawResponse that can be serialized.

Implementation

Future<_i1.DynamiteResponse<Note, void>> createNote({
  String? category,
  String? title,
  String? content,
  int? modified,
  int? favorite,
}) async {
  final rawResponse = createNoteRaw(
    category: category,
    title: title,
    content: content,
    modified: modified,
    favorite: favorite,
  );

  return rawResponse.future;
}