findTokensByUser method
Finds all tokens for a specific user
userId The user ID to search for
guard Optional guard name to filter by
Returns list of token data for the user
Implementation
@override
Future<List<Map<String, dynamic>>> findTokensByUser(
dynamic userId, [
String? guard,
]) async {
return _repository.findTokensByUser(userId, guard);
}