BaseBlock constructor
const
BaseBlock({
- Key? key,
- String? title,
- Widget? extra,
- BaseEmpty? empty,
- BaseButton? trailing,
- EdgeInsets? emptyPadding,
- bool isEmpty = false,
- required Widget child,
Implementation
const BaseBlock({
super.key,
this.title,
this.extra,
this.empty,
this.trailing,
this.emptyPadding,
this.isEmpty = false,
required this.child,
});