tellraw method

RestActionAble tellraw(
  1. List<TextComponent> show
)

Generates a tellraw command

player.tellraw([
TextComponent('Welcome to my Server!')
]).queue()

Uses StraitPlayer.particle() and StraitEntity.at()

Implementation

RestActionAble tellraw(List<TextComponent> show) =>
    StraitWidget.builder.create(Tellraw(this, show: show));