Border Radius
StacBorderRadius allows you to build the Flutter BorderRadius class using JSON. To know more about the BorderRadius class in Flutter, refer to the official documentation.Properties
| Property | Type | Description |
|---|---|---|
| radius | double? | Defines the border Radius for all corners to be painted. |
| radius | Map<String, double>? | Defines the border Radius of each corner to be painted explicitly. |
| radius | List<double>? | Defines the border Radius of each corner to be painted explicitly. |
StacBorderRadius can be defined using one of the above 3 methods.
:::