BoxBorderDto constructor

const BoxBorderDto({
  1. BorderSideDto? top,
  2. BorderSideDto? bottom,
  3. BorderSideDto? left,
  4. BorderSideDto? right,
  5. BorderSideDto? start,
  6. BorderSideDto? end,
})

Implementation

const BoxBorderDto({
  this.top,
  this.bottom,
  this.left,
  this.right,
  this.start,
  this.end,
});