Shapes constructor

Shapes({
  1. double? borderRadius,
  2. double? borderWidth,
  3. Shadow? shadow,
})

Implementation

Shapes({
  this.borderRadius,
  this.borderWidth,
  this.shadow,
});