prefixShadows method

NikuTextField prefixShadows(
  1. List<Shadow> shadows
)

Collection of text's shadow

Equivalent to

TextStyle(shadows: input)

Implementation

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

  return this;
}