PopupWindowDialogRF constructor

const PopupWindowDialogRF({
  1. Key? key,
  2. String? title,
  3. String? subTitle,
  4. IconData? avatarIcon,
  5. String? avatarImage,
  6. double? avatarSize = 24,
  7. double height = 100,
  8. double blurAmount = 3,
  9. Color? avatarBackground = Colors.blue,
  10. Widget? body,
  11. Function? onCancel,
  12. Function? onAccept,
})

Implementation

const PopupWindowDialogRF(
    {Key? key,
    this.title,
    this.subTitle,
    this.avatarIcon,
    this.avatarImage,
    this.avatarSize = 24,
    this.height = 100,
    this.blurAmount = 3,
    this.avatarBackground = Colors.blue,
    this.body,
    this.onCancel,
    this.onAccept})
    : super(key: key);