currentUser<T extends EquatableUser> static method

T currentUser<T extends EquatableUser>(
  1. BuildContext context
)

Returns the current user from the AuthenticationRepository

Implementation

static T currentUser<T extends EquatableUser>(BuildContext context) =>
    EasyAuth.of<T>(context).currentUser!;