buildState abstract method

Widget buildState(
  1. BuildContext context,
  2. AuthStatus status,
  3. T? user
)

Rebuilds the state of the app every time the authentication status changes. This is an efficient method due to T extending Equatable and therefore only rebuilding when necessary

Implementation

Widget buildState(BuildContext context, AuthStatus status, T? user);