Gamemode constructor

const Gamemode(
  1. String uuid,
  2. String displayName,
  3. String? duration,
  4. bool isTeamVoiceAllowed,
  5. bool isMinimapHidden,
  6. int orbCount,
  7. List<String>? teamRoles,
  8. List<OverridenGameFeature>? gameFeatureOverrides,
  9. String? displayIcon,
  10. String assetPath,
)

Implementation

const Gamemode(
    this.uuid,
    this.displayName,
    this.duration,
    this.isTeamVoiceAllowed,
    this.isMinimapHidden,
    this.orbCount,
    this.teamRoles,
    this.gameFeatureOverrides,
    this.displayIcon,
    this.assetPath);