show method

Future<Response> show(
  1. int id, {
  2. Map<String, String>? params,
})

Implementation

Future<Response> show(int id, {Map<String, String>? params}) async {
  return Repository.get("$api/$id", body: params, headers: await _headers);
}