Note constructor

Note({
  1. NoteLinks? links,
  2. DateTime? createdAt,
  3. String? id,
  4. List<Map<String, dynamic>>? text = const [],
  5. String? type,
  6. DateTime? updatedAt,
})

Returns a new Note instance.

Implementation

Note({
  this.links,
  this.createdAt,
  this.id,
  this.text = const [],
  this.type,
  this.updatedAt,
});