withExpanded method

Expanded withExpanded({
  1. int flex = 1,
})

Implementation

Expanded withExpanded({
  int flex = 1,
}) {
  return Expanded(
    flex: flex,
    child: this,
  );
}