getStatus function

  1. @Deprecated("The status endpoints were removed by Mojang in October 2021.")
Future<MojangStatus> getStatus()

Returns the Mojang and Minecraft API and website status.

This service was closed down by Mojang on 8 October 2021 due to incorrect status responses, saying "it was a legacy system running that we (as you might have noticed) did not update correctly, or held an accurate representation of our services". See https://bugs.mojang.com/browse/WEB-2303

Implementation

@Deprecated("The status endpoints were removed by Mojang in October 2021.")
Future<MojangStatus> getStatus() async {
  return MojangStatus.empty();
}