build method

HubbleText build(
  1. String text, {
  2. Key? key,
  3. TextAlign? textAlign,
})

Implementation

HubbleText build(String text, {Key? key, TextAlign? textAlign}) {
  return HubbleText(
    text,
    key: key,
    style: this,
    textAlign: textAlign,
  );
}