Hologram.multiple constructor

Hologram.multiple(
  1. List<TextComponent> texts, {
  2. required Location location,
  3. List<String>? tags,
  4. double space = 0.25,
})

If you wish you can assign each line a separate TextComponent with Hologram.multiple

Implementation

Hologram.multiple(
  this.texts, {
  required this.location,
  this.tags,
  this.space = 0.25,
}) {
  if (tags == null) {
    tags = ['objd_hologram'];
  } else {
    tags!.add('objd_hologram');
  }
}