dismissMessage method

  1. @override
void dismissMessage()
override

Implementation

@override
void dismissMessage() async {
  try {
    methodChannel.invokeMethod(MethodConsts.dismissMessage);
  } on PlatformException catch (e) {
    handleException(e);
  }
}