registerProtocol method

Future<void> registerProtocol([
  1. String? neomagePath
])

Register the protocol handler.

Implementation

Future<void> registerProtocol([String? neomagePath]) async {
  await registerProtocolHandler(neomagePath);
  isProtocolRegistered.value = true;
}