DeepLinkHandleAction constructor

DeepLinkHandleAction({
  1. Invokable? initiator,
  2. required String? url,
  3. required EnsembleAction? onLinkReceived,
  4. EnsembleAction? onError,
})

Implementation

DeepLinkHandleAction({
  super.initiator,
  required this.url,
  required this.onLinkReceived,
  this.onError,
});