build method

  1. @mustCallSuper
  2. @override
Widget build(
  1. BuildContext context
)
inherited

Throws to prevent UI building from the controller.

Implementation

@mustCallSuper
@override
Widget build(BuildContext context) {
  throw UnsupportedError(
    '$runtimeType.build() is invalid. Use <StateWidget.build()> instead.',
  );
}