getUserAttributes method
Reads user profile attributes named in parameters.
Implementation
Future<String> getUserAttributes(Map<String, dynamic> parameters) async {
final attributes =
(parameters['attributes'] as List).map((e) => e.toString()).toList();
return await _userProfile.getUserAttributes(attributes);
}