getAllUsers method

Future<List<UserModel>> getAllUsers()

Fetch all users (for admin purposes)

Implementation

Future<List<UserModel>> getAllUsers() async => await _userRepo.allUsers();