sizedBox method

WidgetModifierConfig sizedBox({
  1. double? width,
  2. double? height,
})

Implementation

WidgetModifierConfig sizedBox({double? width, double? height}) {
  return merge(WidgetModifierConfig.sizedBox(width: width, height: height));
}