showErrorNotification method

void showErrorNotification(
  1. int errorCode
)

Creates and displays a dialog box for a result code.

Implementation

void showErrorNotification(int errorCode) {
  _channel.invokeMethod("showErrorNotification", {'errCode': errorCode});
}