rHeight method

double rHeight({
  1. double? maxHeight,
})

Implementation

double rHeight({
  double? maxHeight,
}) {
  return ResponsiveSizeUtils.height(
    this.toDouble(),
    maxHeight: maxHeight,
  );
}