setWindowBackgroundColor function

Future setWindowBackgroundColor(
  1. Color bgcolor
)

Implementation

Future setWindowBackgroundColor(Color bgcolor) async {
  if (isDesktopPlatform()) {
    debugPrint("setWindowBackgroundColor($bgcolor)");
    await windowManager.setBackgroundColor(bgcolor);
  }
}