AdExpanded constructor

AdExpanded({
  1. required double flex,
  2. required AdView child,
})

Implementation

AdExpanded({
  required this.flex,
  required AdView child,
})  : assert(flex >= 0),
      super(child: child);