updateUserAttributes method
Updates user profile attributes from parameters.
Implementation
Future<void> updateUserAttributes(Map<String, dynamic> parameters) async {
final attributeMap =
Map<String, Object>.from(parameters['attributeMap'] as Map);
return await _userProfile.updateUserAttributes(attributeMap);
}