remove method

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

Implementation

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