getUserEmailById method

Future<String?> getUserEmailById(
  1. String userId
)

Implementation

Future<String?> getUserEmailById(String userId) async {
  return _getUserFieldById(userId, 'email');
}