isMobile property

bool isMobile

Implementation

bool get isMobile {
  switch (this) {
    case TargetPlatform.android:
    case TargetPlatform.iOS:
      return true;
    default:
      return false;
  }
}