sizeInches property

double sizeInches

The exact physical size in inches measured diagonally across the display.

Implementation

double get sizeInches {
  final width = widthInches;
  final height = heightInches;
  return math.sqrt((width * width) + (height * height));
}