BorderRadius.only constructor

const BorderRadius.only({
  1. int topLeft = 0,
  2. int topRight = 0,
  3. int bottomLeft = 0,
  4. int bottomRight = 0,
})

Implementation

const BorderRadius.only({
  this.topLeft = 0,
  this.topRight = 0,
  this.bottomLeft = 0,
  this.bottomRight = 0,
});