CornerRounding constructor

const CornerRounding([
  1. double radius = 0.0,
  2. double smoothing = 0.0
])

Implementation

const CornerRounding([this.radius = 0.0, this.smoothing = 0.0])
  : assert(radius >= 0.0),
    assert(smoothing >= 0.0 && smoothing <= 1.0);