PopModel constructor

PopModel({
  1. double? width,
  2. double? height,
  3. BorderRadius? borderRadius,
  4. dynamic title,
  5. dynamic subtitle,
  6. Widget? leading,
  7. Widget? trailing,
  8. double? titlesize,
  9. double? subtitlesize,
  10. Color? titleColor,
  11. Color? subtitleColor,
  12. bool? fadeInSubtitle,
  13. bool scroll_subtitle = true,
  14. VoidCallback? onTap,
  15. VoidCallback? onAppear,
  16. VoidCallback? onExit,
  17. bool? darkMode,
  18. Color? backgroundColor,
  19. PopNotifyStatus? status,
  20. Duration? duration,
})

Implementation

PopModel(
    {this.width,
    this.height,
    this.borderRadius,
    this.title,
    this.subtitle,
    this.leading,
    this.trailing,
    this.titlesize,
    this.subtitlesize,
    this.titleColor,
    this.subtitleColor,
    this.fadeInSubtitle,
    this.scroll_subtitle = true,
    this.onTap,
    this.onAppear,
    this.onExit,
    this.darkMode,
    this.backgroundColor,
    this.status,
    this.duration});