errorText method

Widget errorText(
  1. String text, {
  2. TextAlign? align,
})

Red "Invalid OTP. Please try again." line under the boxes.

Implementation

Widget errorText(String text, {TextAlign? align}) {
  return Text(
    text,
    textAlign: align ?? TextAlign.center,
    style: TextStyle(
      fontFamily: fontFamily,
      fontSize: 13,
      fontWeight: FontWeight.w500,
      color: Colors.red,
    ),
  );
}