isPhone function

bool isPhone(
  1. dynamic context
)

Implementation

bool isPhone(context) {
  return ResponsiveBreakpoints.of(context).equals(MOBILE);
}