getWidthParam method Null safety
Returns Param with the width
Implementation
Param? getWidthParam() {
if (width != null) {
return Param("w", width);
}
return null;
}
Returns Param with the width
Param? getWidthParam() {
if (width != null) {
return Param("w", width);
}
return null;
}