BookPage constructor

BookPage({
  1. required String filename,
  2. Map<String, String>? attributes,
  3. String? content,
  4. String dir = "ltr",
})

Implementation

BookPage({
  required this.filename,
  this.attributes,
  this.content,
  this.dir = "ltr",
});