StoryReaderPage constructor

const StoryReaderPage({
  1. Key? key,
  2. required StoryReaderConfig config,
  3. String title = '短故事阅读',
  4. bool showAppBar = true,
  5. Color backgroundColor = Colors.white,
  6. String? readerId,
  7. Map<String, dynamic>? extra,
  8. StoryReaderListener? listener,
})

Implementation

const StoryReaderPage({
  super.key,
  required this.config,
  this.title = '短故事阅读',
  this.showAppBar = true,
  this.backgroundColor = Colors.white,
  this.readerId,
  this.extra,
  this.listener,
});