ApiUsageResult constructor

const ApiUsageResult({
  1. required String api,
  2. String? packageFilter,
  3. required int totalMatches,
  4. required List<ApiMatch> matches,
})

Implementation

const ApiUsageResult({
  required this.api,
  this.packageFilter,
  required this.totalMatches,
  required this.matches,
});