of<T extends EquatableUser> static method

EasyAuthBloc<T> of<T extends EquatableUser>(
  1. BuildContext context
)

Obtain a value from the nearest ancestor provider of type EasyAuthBloc.

Behaves very similarily to Navigator.of from the material.dart library or context.read<T> from the bloc library

Implementation

static EasyAuthBloc<T> of<T extends EquatableUser>(BuildContext context) =>
    context.read<EasyAuthBloc<T>>();