authBloc method

AuthenticationBloc authBloc({
  1. bool listen = true,
})

Implementation

AuthenticationBloc authBloc({
  final bool listen = true,
}) =>
    BlocProvider.of<AuthenticationBloc>(
      this,
      listen: listen,
    );