build method

  1. @override
dynamic build (
  1. dynamic context
)

Builds our Home Page by calling the constructor for the class that builds the homepage.

Implementation

@override
Widget build(BuildContext context) {
  return _HomePage();
}