getScreenValue<T> method

T? getScreenValue<T>(
  1. ScreenModel<T> sbp
)

Implementation

T? getScreenValue<T>(ScreenModel<T> sbp) => {
      DeviceScreen.mobile: sbp.mobile,
      DeviceScreen.tablet: sbp.tablet,
      DeviceScreen.desktop: sbp.desktop,
    }[this];