getUserPreferencesTopic method

  1. @override
Future<CourierUserPreferencesTopic> getUserPreferencesTopic({
  1. required String topicId,
})
override

Implementation

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