getRoster method

  1. @override
dynamic getRoster()
override

Implementation

@override
getRoster() async {
  try {
    await mirrorFlyMethodChannel.invokeMethod('getRoster');
  } on PlatformException catch (e) {
    debugPrint("Platform Exception ===> $e");
    rethrow;
  } on Exception catch (error) {
    debugPrint("Exception ==> $error");
    rethrow;
  }
}