printAllUsers method
Prints all users stored in the database.
This method fetches all users and prints their data to the console.
Implementation
Future<void> printAllUsers() async {
List<UsersDBModel> allUsers = await getUsersDBModels();
for (var user in allUsers) {
print(user.toString());
}
}