roundPixels function Null safety
Round pixels values to 1 decimal point max.
Implementation
String roundPixels(double val, Unit? unit) {
return '${truncate(val, 1)}${unit?.xmlValue ?? Unit.px}';
}
Round pixels values to 1 decimal point max.
String roundPixels(double val, Unit? unit) {
return '${truncate(val, 1)}${unit?.xmlValue ?? Unit.px}';
}