sendUserAttributes method
Future<void>
sendUserAttributes({
- required Map<
String, dynamic> userAttributes, - bool? clearPreviousAttributes,
- required TRErrorCallback errorCallback,
override
Implementation
@override
Future<void> sendUserAttributes({
required Map<String, dynamic> userAttributes,
bool? clearPreviousAttributes,
required TRErrorCallback errorCallback,
}) async {
final callId = _newCallId();
_errorCallbacks[callId] = errorCallback;
await methodChannel.invokeMethod<void>('sendUserAttributes', {
'callId': callId,
'userAttributes': userAttributes,
'clearPreviousAttributes': clearPreviousAttributes,
});
}