Expanded constructor

const Expanded({
  1. Key? key,
  2. int flex = 1,
  3. required Widget child,
})

Implementation

const Expanded({
  super.key,
  this.flex = 1,
  required this.child,
});