OsuLoader method

dynamic OsuLoader()

Return Specific ONE Value from JSON Object

Implementation

OsuLoader() 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);
  } finally {
    base.close();
  }
}