getAspectRatioParam method

Param? getAspectRatioParam()

Returns Param with the aspect ratio

Implementation

Param? getAspectRatioParam() {
  if (aspectRatio != null) {
    return Param("ar", aspectRatio);
  }
  return null;
}