isSupported property

bool get isSupported

Implementation

bool get isSupported {
  if (Platform.isAndroid) return _android.contains(this);
  if (Platform.isIOS || Platform.isMacOS) return _apple.contains(this);
  return true;
}