expandConstrained method
Implementation
ConstrainedBox expandConstrained({
Key? key,
double? w,
double? h,
}) =>
ConstrainedBox(
key: key,
constraints: BoxConstraints.expand(width: w, height: h),
child: this,
);
ConstrainedBox expandConstrained({
Key? key,
double? w,
double? h,
}) =>
ConstrainedBox(
key: key,
constraints: BoxConstraints.expand(width: w, height: h),
child: this,
);