statusText method
Countdown / expiry line under the OTP boxes. error switches to the
red "OTP expired…" look.
Implementation
Widget statusText(String text, {bool error = false, TextAlign? align}) {
return Text(
text,
textAlign: align ?? TextAlign.center,
style: TextStyle(
fontFamily: fontFamily,
fontSize: 13,
color: error ? const Color(0xFFD8000C) : theme.primary,
),
);
}