getThing method

Future<BoardGame?> getThing(
  1. ThingParameters parameters
)

Retrieve information about a particular thing.

Implementation

Future<BoardGame?> getThing(ThingParameters parameters) async {
  return _getFirstElement(['thing'], const BoardGameDecoder(), parameters);
}