isCurrentPlatformSupported property

bool isCurrentPlatformSupported

Whether the current platform supports wallpaper based monet.

Only Android supports it, every other platform will generate a palette using a fallback color.

Implementation

static bool get isCurrentPlatformSupported {
  if (kIsWeb) {
    return false;
  }

  return Platform.isAndroid;
}