ZeroTextfieldStyle.rounded constructor

ZeroTextfieldStyle.rounded({
  1. ZeroTextfieldSize? textfieldSize,
  2. Color? focusedBorderColor,
  3. 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);