WindowControlsOverlayConfig.fromJson constructor
Implementation
factory WindowControlsOverlayConfig.fromJson(Map<String, dynamic> json) {
return WindowControlsOverlayConfig(
showCSS: json['showCSS'] as bool? ?? false,
selectedPlatform: json['selectedPlatform'] as String,
themeColor: json['themeColor'] as String,
);
}