handleMethod method

Future handleMethod(
  1. MethodCall call
)

Implementation

Future<dynamic> handleMethod(MethodCall call) async {
  debugPrint("SipChannel handleMethod ${call.arguments}");
  methodName = call.method;
  arguments = call.arguments;
  notifyListeners();
}