getAll method

Future<T> getAll({
  1. Map params = const {},
  2. String? callRole,
})

Implementation

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