FillerArea constructor

FillerArea({
  1. List<Widget>? children,
  2. Widget? child,
  3. EdgeInsets? padding,
  4. double? spacing,
})

Implementation

FillerArea({this.children, this.child, this.padding, this.spacing}) {
  assert(child != null || children != null);
}