CornerRadius constructor

CornerRadius({
  1. double? radius,
  2. double? bottomLeft,
  3. double? bottomRight,
  4. double? topLeft,
  5. double? topRight,
})

Implementation

CornerRadius({
  this.radius,
  this.bottomLeft,
  this.bottomRight,
  this.topLeft,
  this.topRight,
});