DetailsWidget constructor

const DetailsWidget({
  1. required Widget child,
  2. List<Widget>? actions,
  3. Text? title,
  4. Widget? bottomAppBar,
})

Implementation

const DetailsWidget({
  required this.child,
  this.actions,
  this.title,
  this.bottomAppBar,
});