UvBorder constructor

const UvBorder({
  1. required Side top,
  2. required Side bottom,
  3. required Side left,
  4. required Side right,
  5. required Side topLeft,
  6. required Side topRight,
  7. required Side bottomLeft,
  8. required Side bottomRight,
})

Implementation

const UvBorder({
  required this.top,
  required this.bottom,
  required this.left,
  required this.right,
  required this.topLeft,
  required this.topRight,
  required this.bottomLeft,
  required this.bottomRight,
});