PopupTitleView constructor Null safety

PopupTitleView(
  1. {Widget? child,
  2. required String title,
  3. bool showClose = false}
)

Implementation

PopupTitleView({
  this.child,
  required this.title,
  this.showClose = false,
});