InitControl constructor

const InitControl({
  1. Key? key,
  2. Widget? child,
  3. bool? doubleClick,
  4. bool? safeArea,
  5. Duration? delayPop,
  6. VoidCallback? onTapScreen,
  7. Function? onBackPressed,
  8. GlobalKey<FormState>? formKey,
})

Implementation

const InitControl({
  Key? key,
  this.child,
  this.doubleClick,
  this.safeArea,
  this.delayPop,
  this.onTapScreen,
  this.onBackPressed,
  this.formKey,
}) : super(key: key);