EventType constructor
      const
      EventType({ 
    
    
- required String name,
- String? description,
- String? status,
- List<ResourceVersion> ? resourceVersions,
Implementation
const EventType(
    {required this.name,
    this.description,
    this.status,
    this.resourceVersions});