FExpanded<T extends App<T>> constructor

FExpanded<T extends App<T>>(
  1. T app, {
  2. String? key,
  3. int flex = 1,
  4. required FWidget<T> child,
})

Implementation

FExpanded(super.app, {
  super.key,
  this.flex = 1,
  required FWidget<T> child,
}) : super(child: child);