createNote method
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 to0
.favorite
Defaults to0
.
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;
}