BootstrapTarget constructor

const BootstrapTarget({
  1. required BootstrapBuilder builder,
  2. bool dismissible = false,
  3. VoidCallback? onDismiss,
  4. String? hookName,
  5. int order = 0,
})

Implementation

const BootstrapTarget({
  required this.builder,
  this.dismissible = false,
  this.onDismiss,
  String? hookName,
  int order = 0,
})  : _hookName = hookName,
      _order = order;