connectToServer static method
Implementation
static Future<Map> connectToServer({
required String username,
required String password,
required String appType,
}) async {
return await _connectToServer(
username: username,
password: password,
appType: appType,
);
}