contentMaxWidth property

double? get contentMaxWidth

Get recommended content max width

Implementation

double? get contentMaxWidth {
  if (isPhone) return null;
  if (isTablet) return 720;
  return 1140;
}