updateManagedConfig method

  1. @override
Future<ChatResult<void>> updateManagedConfig(
  1. String userId, {
  2. required ManagedUserConfiguration configuration,
})
override

Updates the configuration of a managed user.

Pass a full ManagedUserConfiguration — the backend replaces the stored config wholesale (no partial PATCH). Use getManagedConfig

  • copyWith if you only want to tweak one field.

Implementation

@override
Future<ChatResult<void>> updateManagedConfig(
  String userId, {
  required ManagedUserConfiguration configuration,
}) async => const ChatSuccess(null);