globalBorder function

OutlineInputBorder globalBorder({
  1. required Color color,
})

Implementation

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