shadows method

NikuTextField shadows(
  1. List<Shadow> shadows
)

Collection of text's shadow

Equivalent to

TextStyle(shadows: input)

Implementation

NikuTextField shadows(List<Shadow> shadows) {
  this._base_shadows = shadows;

  return this;
}