call method

T call({
  1. double? width,
  2. double? height,
})

Implementation

T call({double? width, double? height}) {
  return builder(SizedBoxModifierAttribute(width: width, height: height));
}