ListNotesResponse constructor

ListNotesResponse({
  1. String? nextPageToken,
  2. List<Note>? notes,
})

Implementation

ListNotesResponse({
  this.nextPageToken,
  this.notes,
});