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:

Implementation

Future<_i1.DynamiteResponse<Note, void>> createNote({
  String? category,
  String? title,
  String? content,
  int? modified,
  int? favorite,
}) async {
  final _request = $createNote_Request(
    category: category,
    title: title,
    content: content,
    modified: modified,
    favorite: favorite,
  );
  final _response = await httpClient.send(_request);

  final _serializer = $createNote_Serializer();
  final _rawResponse = await _i1.ResponseConverter<Note, void>(_serializer).convert(_response);
  return _i1.DynamiteResponse.fromRawResponse(_rawResponse);
}