getBorder function

OutlineInputBorder getBorder(
  1. Color color
)

Implementation

OutlineInputBorder getBorder(Color color) {
  return OutlineInputBorder(
    borderRadius: BorderRadius.circular(12),
    borderSide: BorderSide(
      color: color,
    ),
  );
}