build method

  1. @override
Widget build(
  1. BuildContext context
)
override

Assemble and return the widget.

Implementation

@override
Widget build(BuildContext context) {
  if (spwmlParams.p.isGone) {
    return const SizedBox();
  } else {
    return expand(
        transform(material(constraints(container(getWidget(context))))));
  }
}