Note constructor

Note({
  1. String? id,
  2. String? author,
  3. dynamic date,
  4. String? text,
  5. dynamic baseType,
  6. dynamic schemaLocation,
  7. dynamic type,
})

Implementation

Note(
    {this.id,
    this.author,
    this.date,
    this.text,
    this.baseType,
    this.schemaLocation,
    this.type});