setHandler method

dynamic setHandler(
  1. Future handler(
    1. MethodCall call
    )?
)

(Applicable to iOS only - pass URL to Flutter through 'handle_url' methodCall.method - refer to example)

Implementation

setHandler(Future<dynamic> Function(MethodCall call)? handler) =>
    _instance.setHandler(handler);