AreaEffectCloud constructor

AreaEffectCloud(
  1. Location location, {
  2. TextComponent? name,
  3. Map<String, dynamic>? nbt,
  4. int? age,
  5. List<String>? tags,
  6. int? radius,
  7. int? applicationDelay,
  8. int? duration,
  9. int? waitTime,
})

An AreaEffectCloud can be created with the Summon Widget, but there is also a specific Widget with special properties for an AreaEffectCloud.

Implementation

AreaEffectCloud(
  Location location, {
  TextComponent? name,
  Map<String, dynamic>? nbt,
  int? age,
  List<String>? tags,
  this.radius,
  this.applicationDelay,
  this.duration,
  this.waitTime,
}) : super(
        Entities.area_effect_cloud,
        location: location,
        name: name,
        nbt: nbt,
        age: age,
        tags: tags,
      );