defuncart / steamgriddb

A dart client for steamgriddb.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

steamgriddb

A dart client for steamgriddb.com

final sgdb = SteamGridDB(apiKey);
final searchResults = await sgdb.getGamesBySearchTerm('half life');
if(searchResults.isNotEmpty) {
  final gameId = searchResults.first.id.toString();
  final grids = await sgdb.getCoversForGame(gameId);
}

This package is not affiliated with Valve Corporation nor the Steam platform.

About

A dart client for steamgriddb.com

License:MIT License


Languages

Language:Dart 100.0%