getThemeMode property
getThemeMode Get the window theme mode.
Implementation
@override
Future<DwmThemeMode> get getThemeMode async {
final result = await methodChannel.invokeMethod(getThemeModeMethod);
print({'GetThemeMode': result});
return DwmThemeMode.system;
}