setAccount method
Create account registration with login and password
Implementation
@override
Future<void> setAccount({required String login, required String password}) async {
return await callClientMethodChannel.invokeMethod<void>(
'setAccount', _accountToMap(login: login, password: password));
}