VitText.error constructor

VitText.error(
  1. String text
)

Implementation

factory VitText.error(String text) {
  return VitText(
    text,
    style: const TextStyle(
      color: Colors.red,
    ),
  );
}