errorText method
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,
),
);
}