maybeParse static method
Implementation
static DimensionValue? maybeParse(dynamic value) {
if (value == null) return null;
return DimensionValue(_parseNum(value.toString()));
}
static DimensionValue? maybeParse(dynamic value) {
if (value == null) return null;
return DimensionValue(_parseNum(value.toString()));
}