isTouchShell function

bool isTouchShell({
  1. TargetPlatform? platform,
})

Implementation

bool isTouchShell({TargetPlatform? platform}) {
  final p = platform ?? defaultTargetPlatform;
  return p == TargetPlatform.android || p == TargetPlatform.iOS;
}