ZeroTextfieldStyle.underline constructor
ZeroTextfieldStyle.underline({
- ZeroTextfieldSize? textfieldSize,
- Color? focusedBorderColor,
- Color? focusedColor,
Implementation
factory ZeroTextfieldStyle.underline(
{ZeroTextfieldSize? textfieldSize,
Color? focusedBorderColor,
Color? focusedColor}) =>
ZeroTextfieldStyle(
inputDecorationType: InputDecorationType.underline,
textfieldSize: textfieldSize ?? ZeroTextfieldSize.small,
focusedBorderColor: focusedBorderColor ?? ZeroColors.primary,
focusedColor: focusedBorderColor ?? ZeroColors.primary);