locked method

AuthRepository locked()

locked implementation

wrap an AuthRepository with lock to enable concurrency support.

it should be wrapped first with lock then debounce.

Implementation

AuthRepository locked() => AuthRepositoryLockedImpl(this);