getHeightParam method Null safety
Returns Param with the height
Implementation
Param? getHeightParam() {
if (height != null) {
return Param("h", height);
}
return null;
}
Returns Param with the height
Param? getHeightParam() {
if (height != null) {
return Param("h", height);
}
return null;
}