textShadow method

TextBuilder textShadow(
  1. List<Shadow> shadows
)

Implementation

TextBuilder textShadow(List<Shadow> shadows) {
  if (_shadows == null) {
    _shadows = shadows;
  } else {
    _shadows!.addAll(shadows);
  }
  return this;
}