DisplayCornerRadii constructor
Creates a DisplayCornerRadii.
Implementation
const DisplayCornerRadii({
required this.topLeft,
required this.topRight,
required this.bottomRight,
required this.bottomLeft,
}) : assert(topLeft >= 0),
assert(topRight >= 0),
assert(bottomRight >= 0),
assert(bottomLeft >= 0);