getValue method

T getValue(
  1. BuildContext context
)

Get value based on current context.

Implementation

T getValue(BuildContext context) {
  return responsiveValue(
    context,
    mobile: mobile,
    tablet: tablet,
    desktop: desktop,
    widescreen: widescreen,
  );
}