flexible method

Flexible flexible({
  1. int flex = 1,
})

Wraps the widget with Flexible.

Implementation

Flexible flexible({int flex = 1}) {
  return Flexible(flex: flex, child: this);
}