connectToServer static method

Future<Map> connectToServer({
  1. required String username,
  2. required String password,
  3. required String appType,
})

Implementation

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