flutterMethod method

Future flutterMethod(
  1. MethodCall methodCall
)

Implementation

Future<dynamic> flutterMethod(MethodCall methodCall) async {
  switch (methodCall.method) {
    case 'onNotificationClick':
      notifyClickListener(methodCall.arguments);
      break;
    default:
      break;
  }
}