EventType constructor

const EventType({
  1. required String name,
  2. String? description,
  3. String? status,
  4. List<ResourceVersion>? resourceVersions,
})

Implementation

const EventType(
    {required this.name,
    this.description,
    this.status,
    this.resourceVersions});