myTextInputBorder function

OutlineInputBorder myTextInputBorder(
  1. Color borderColor
)

Implementation

OutlineInputBorder myTextInputBorder(Color borderColor) {
  return OutlineInputBorder(
      borderSide: BorderSide(
        color: borderColor,
      ),
      borderRadius: BorderRadius.circular(8));
}