usingSkia property

bool usingSkia

Returns a boolean indicating whether Skia is being used. On non-web platforms, this method always returns true.

Implementation

static bool get usingSkia {
  if (!kIsWeb) {
    return true;
  }
  return _usesSkia ??= _initUsesSkia();
  // return const bool.fromEnvironment('FLUTTER_WEB_USE_SKIA');
}