maxMobileWidth property

double get maxMobileWidth

The breakpoint used to determine whether the device is a mobile device or a tablet.

Implementation

double get maxMobileWidth => parentState == null
    ? 599
    : (parentState!.widget as v.AppStatefulWidget).onMaxMobileWidth() ?? 599;