doomInfo method

Future<Doom> doomInfo(
  1. int doomId
)

Implementation

Future<Doom> doomInfo(int doomId) async {
  final json = await repository.doom(doomId);

  return Doom.fromJson(json);
}