changePassword method
change password of account
Implementation
Future<Map?> changePassword(String? pubKey, passOld, passNew) async {
final res = await serviceRoot.webView!.evalJavascript(
'keyring.changePassword("$pubKey", "$passOld", "$passNew")');
return res;
}