addOrUpdateLocalUserAttributes method

  1. @Deprecated('Use addOrUpdateLocalUserAttributes2 instead of.')
Future<void> addOrUpdateLocalUserAttributes(
  1. List<Map<String, String>> attributes
)

Implementation

@Deprecated('Use addOrUpdateLocalUserAttributes2 instead of.')
Future<void> addOrUpdateLocalUserAttributes(
    List<Map<String, String>> attributes) {
  return addOrUpdateLocalUserAttributes2(
      attributes.map((e) => RtmAttribute.fromJson(e)).toList());
}