getSessionPassword method
Get the session's password.
Return session's password
Implementation
@override
Future<String> getSessionPassword() async {
var pwd = await methodChannel
.invokeMethod<String?>('getSessionPassword')
.then<String?>((String? value) => value);
return (pwd == null) ? "" : pwd;
}