NuntioFooter constructor

NuntioFooter({
  1. Widget? footer,
  2. double? height,
})

Implementation

NuntioFooter({Widget? footer, double? height}) {
  this.footer = footer ?? SizedBox();
  this.height = height ?? 0.0;
}