initializeRust function
Starts the main
function in Rust.
Implementation
Future<void> initializeRust(
AssignRustSignal assignRustSignal, {
String? compiledLibPath,
}) async {
if (compiledLibPath != null) {
setCompiledLibPathReal(compiledLibPath);
}
await prepareInterfaceReal(assignRustSignal);
startRustLogicReal();
}