OsuLoader2 method

dynamic OsuLoader2()

Return Specific TWO Value from JSON Object

Implementation

OsuLoader2() async {
  final base = RetryClient(http.Client());
  try {
    String DataText = await base.read(Uri.parse(
        "$BASE_URL/$typeosu/?$data_endpoint=$ids&client_id=$client_id&client_secret=$client_secret"));
    return jsonDecode(DataText)["$data"]["$data2"];
  } finally {
    base.close();
  }
}