BaseBlock constructor

const BaseBlock({
  1. Key? key,
  2. String? title,
  3. Widget? extra,
  4. BaseEmpty? empty,
  5. BaseButton? trailing,
  6. EdgeInsets? emptyPadding,
  7. bool isEmpty = false,
  8. required Widget child,
})

Implementation

const BaseBlock({
  super.key,
  this.title,
  this.extra,
  this.empty,
  this.trailing,
  this.emptyPadding,
  this.isEmpty = false,
  required this.child,
});