customUnderlineInputBorder static method

dynamic customUnderlineInputBorder({
  1. Color color = SharingColors.grey,
  2. double? width,
  3. BorderStyle style = BorderStyle.solid,
})

Implementation

static customUnderlineInputBorder({
  Color color = SharingColors.grey,
  double? width,
  BorderStyle style = BorderStyle.solid,
}) {
  return UnderlineInputBorder(
    borderSide: BorderSide(
      color: color,
      width: Sizes.WIDTH_1,
      style: style,
    ),
  );
}