Finding constructor

Finding({
  1. required DateTime analyzedAt,
  2. required Map<String, String> condition,
  3. required DateTime createdAt,
  4. required String id,
  5. required String resourceOwnerAccount,
  6. required ResourceType resourceType,
  7. required FindingStatus status,
  8. required DateTime updatedAt,
  9. List<String>? action,
  10. String? error,
  11. bool? isPublic,
  12. Map<String, String>? principal,
  13. String? resource,
  14. List<FindingSource>? sources,
})

Implementation

Finding({
  required this.analyzedAt,
  required this.condition,
  required this.createdAt,
  required this.id,
  required this.resourceOwnerAccount,
  required this.resourceType,
  required this.status,
  required this.updatedAt,
  this.action,
  this.error,
  this.isPublic,
  this.principal,
  this.resource,
  this.sources,
});