BootstrapModal constructor

const BootstrapModal({
  1. Key? key,
  2. Widget? title,
  3. Widget? content,
  4. List<Widget>? actions,
  5. bool dismissble = false,
  6. BootstrapModalSize size = BootstrapModalSize.medium,
})

Implementation

const BootstrapModal({
  Key? key,
  this.title,
  this.content,
  this.actions,
  this.dismissble = false,
  this.size = BootstrapModalSize.medium,
}) : super(key: key);