BorderRadius.only constructor

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

Implementation

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