getNameHistory function

  1. @Deprecated("The name history by UUID endpoints were removed by Mojang in September 2022")
Future<List<Name>> getNameHistory(
  1. String uuid
)

Returns the name history for the account with uuid.

This endpoint has been deprecated by Mojang and was removed on 13 September 2022 at 9:25 AM CET to "improve player safety and data privacy". Official announcement: https://help.minecraft.net/hc/en-us/articles/8969841895693-Username-History-API-Removal-FAQ-

Implementation

@Deprecated(
    "The name history by UUID endpoints were removed by Mojang in September 2022")
Future<List<Name>> getNameHistory(String uuid) async {
  return Future.value(const []);
}