InputBorderStyle constructor

InputBorderStyle({
  1. BorderType borderType = BorderType.none,
  2. BorderRadius radius = BorderRadius.zero,
  3. Color color = const Color(0xFF000000),
  4. double width = 1,
  5. double gapPadding = 4,
  6. BorderStyle style = BorderStyle.solid,
  7. double strokeAlign = BorderSide.strokeAlignInside,
})

Implementation

InputBorderStyle({
  this.borderType = BorderType.none,
  this.radius = BorderRadius.zero,
  this.color = const Color(0xFF000000),
  this.width = 1,
  this.gapPadding = 4,
  this.style = BorderStyle.solid,
  this.strokeAlign = BorderSide.strokeAlignInside,
});