getUserPreferencesTopic method
Implementation
@override
Future<CourierUserPreferencesTopic> getUserPreferencesTopic({ required String topicId }) async {
final data = await coreChannel.invokeMethod('getUserPreferencesTopic', {
'topicId': topicId,
});
return CourierUserPreferencesTopic.fromJson(data);
}