getUserAttributes method

  1. @Deprecated('Use getUserAttributes2 instead of.')
Future<Map<String, dynamic>> getUserAttributes(
  1. String userId
)

Implementation

@Deprecated('Use getUserAttributes2 instead of.')
Future<Map<String, dynamic>> getUserAttributes(String userId) {
  return getUserAttributes2(userId).then(
      (value) => {for (var element in value) (element).key: element.value});
}