fetchArtCrime function

Future<ArtCrime> fetchArtCrime(
  1. String id
)

Fetches an art crime with the given id.

Implementation

Future<ArtCrime> fetchArtCrime(String id) async =>
    await ArtCrimeService.fetchArtCrime(id);