flutterAppSupportsWeb property

bool flutterAppSupportsWeb

Returns whether this package supports Flutter for Web.

Implementation

bool get flutterAppSupportsWeb {
  if (!isFlutterApp) return false;
  return _flutterAppSupportsPlatform(kWeb);
}