shadows method

NikuText shadows(
  1. List<Shadow> shadows
)

Collection of text's shadow

Equivalent to

TextStyle(shadows: input)

Implementation

NikuText shadows(List<Shadow> shadows) {
  this._shadows = shadows;

  return this;
}