showAlert method

  1. @override
Future showAlert(
  1. String title,
  2. String message
)
override

Implementation

@override
Future showAlert(String title,String message) async {
   await methodChannel.invokeMethod<String>('showAlert',{'title': title,'message':message});
}