getGroupMessageStatusCount method

  1. @override
Future<int?> getGroupMessageStatusCount(
  1. String messageid
)
override

Implementation

@override
Future<int?> getGroupMessageStatusCount(String messageid) async {
  int? res;
  try {
    res = await mirrorFlyMethodChannel.invokeMethod<int>(
        'getGroupMessageStatusCount', {"messageid": messageid});
    return res;
  } on PlatformException catch (e) {
    debugPrint("Platform Exception ===> $e");
    rethrow;
  } on Exception catch (error) {
    debugPrint("Exception ==> $error");
    rethrow;
  }
}