isWalletExist function
Implementation
bool isWalletExist({required String path}) {
final pathPointer = path.toNativeUtf8().cast<Char>();
final isExist = monero_flutter.bindings.is_wallet_exist(pathPointer);
calloc.free(pathPointer);
return isExist;
}