isSupport method

  1. @override
bool isSupport()
override

check is support or not

Implementation

@override
bool isSupport() {
  if (isMobile) {
    return true;
  }
  if (isDesktop) {
    return Platform.isWindows;
  }
  return false;
}