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