buildContainer method

Widget buildContainer(
  1. Widget child,
  2. double width,
  3. double height
)

This method is used to build the container for the form

Implementation

Widget buildContainer(
  Widget child,
  double width,
  double height,
) {
  if (widget.buildContainer != null) {
    return widget.buildContainer!(
      child,
      width,
      height,
    );
  } else {
    return child;
  }
}