isSupport method

  1. @override
bool isSupport()
override

check is support or not

Implementation

@override
bool isSupport() {
  if ((Dart.isAndroid || Dart.isIOS || Dart.isWindows)) {
    return true;
  }
  return false;
}