Widget flexible({ int flex = 1, FlexFit fit = FlexFit.loose, Key? key, }) { return Flexible( flex: flex, fit: fit, child: this, key: key, ); }