FFocusedOutlineStyle constructor

const FFocusedOutlineStyle({
  1. required Color color,
  2. required BorderRadiusGeometry borderRadius,
  3. double width = 1,
  4. double spacing = 3,
})

Implementation

const FFocusedOutlineStyle({required this.color, required this.borderRadius, this.width = 1, this.spacing = 3})
  : assert(0 < width, 'The width must be greater than 0.');