setLocalUserAttributes method

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

Implementation

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