putUserPreferencesTopic method

  1. @override
Future putUserPreferencesTopic({
  1. required String topicId,
  2. required String status,
  3. required bool hasCustomRouting,
  4. required List<String> customRouting,
})
override

Implementation

@override
Future<dynamic> putUserPreferencesTopic({ required String topicId, required String status, required bool hasCustomRouting, required List<String> customRouting }) async {
  return await coreChannel.invokeMethod('putUserPreferencesTopic', {
    'topicId': topicId,
    'status': status,
    'hasCustomRouting': hasCustomRouting,
    'customRouting': customRouting,
  });
}