FooterView constructor

const FooterView({
  1. Key? key,
  2. required Widget body,
  3. required Widget footer,
  4. bool scrollable = true,
})

Implementation

const FooterView({
  super.key,
  required this.body,
  required this.footer,
  this.scrollable = true,
});