New built-in features
- Updated Readme
- WarzoneData is now called WarzoneProfile
- Added WarzoneMatch
- Added WarzoneSearch
Examples:
[WarzoneApi] Instance
WarzoneApi warzoneApi = WarzoneApi();
[WarzoneSearch] Consult the data of a player
List<WarzoneSearch> usersFounds = await warzoneApi.fetchUser(username: "RaiiLKilleR#8661004", platform: Platform.atvi);
[WarzoneProfile] Search players by name and platform
WarzoneProfile warzoneProfile = await warzoneApi.search(username: "RaiiLKilleR", platform: Platform.atvi);
[WarzoneMatch] Get the user's last played games
List<WarzoneMatch> matchsFounds = await warzoneApi.fetchMatchesPlayedFromUser(username: "RaiiLKilleR#8661004", platform: Platform.atvi);
[WarzoneMatch] Get information about the game played
WarzoneMatch matchFound = await warzoneApi.fetchMatchFromUser(attributeIdFromMatch: '10005806731254879321');