getTopics method

  1. @override
Future<void> getTopics({
  1. required List<String> topicIds,
  2. dynamic callback(
    1. FlyResponse response
    )?,
})
override

This method is used to get the topic list.

Implementation

@override
Future<void> getTopics(
    {required List<String> topicIds,
    Function(FlyResponse response)? callback}) async {
  String? val = FlyConstants.empty;
  try {
    val = await mirrorFlyMethodChannel
        .invokeMethod('getTopics', {'topicIds': topicIds});
    LogMessage.d('getTopics', ' $val');
    callback?.call(
        FlyResponse(true, val ?? FlyConstants.empty, FlyConstants.empty));
    // return val;
  } on PlatformException catch (e) {
    LogMessage.d("Platform Exception =", " $e");
    callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
        FlyException(e.code, e.message, e.details)));
  } on Exception catch (e) {
    LogMessage.d("Exception ", " $e");
    callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
        FlyException(FlyErrorCode.unHandle, FlyErrorMessage.unHandle, e)));
  }
}