updateUserProperties method

  1. @override
Future<void> updateUserProperties(
  1. PropertyOperations operations
)
override

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);
  }
}