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