getOne method

Future<T> getOne(
  1. String id, {
  2. String? callRole,
})

Implementation

Future<T> getOne(String id, {String? callRole}) {
  String formattedPath = formatPathFromParts([baseUrl, callRole ?? requestRole, path, id]);
  return this.get(Uri.parse(formattedPath));
}