getDefaultDimensions method
Get component-specific default dimensions. Returns a record with (width, height, paddingH, paddingV).
Implementation
@override
({double width, double height, double paddingH, double paddingV})
getDefaultDimensions() {
// Radio uses circleSize for dimensions, paddingH/paddingV unused
return (width: 32.0, height: 32.0, paddingH: 0.0, paddingV: 0.0);
}