updateUserProperties method
Implementation
@override
Future<void> updateUserProperties(PropertyOperations operations) async {
try {
final Map<String, Object?> arguments = {
Argument.operations.value: operations.toMap(),
};
return methodChannel.invokeMethod(
Method.updateUserProperties.value, arguments);
} catch (e) {
log("Failed to updateUserProperties", level: 3, error: e);
}
}