fetchWantedPerson function

Future<WantedPerson> fetchWantedPerson(
  1. String id
)

Fetches a wanted person with the given id.

Implementation

Future<WantedPerson> fetchWantedPerson(String id) async =>
    await WantedPersonService.fetchWantedPerson(id);