flutterAppSupportsLinux property

bool flutterAppSupportsLinux

Returns whether this package supports Flutter for Linux.

Implementation

bool get flutterAppSupportsLinux {
  if (!isFlutterApp) return false;
  return _flutterAppSupportsPlatform(kLinux);
}