success method

HareText success({
  1. TextStyle? style,
})

Implementation

HareText success({TextStyle? style}) {
  this.style = style ?? const TextStyle(color: Colors.green);
  return this;
}