fromJson static method
Implementation
static BackgroundCustomization fromJson(dynamic json) {
return BackgroundCustomization(
backgroundColor: json.containsKey('backgroundColor') ? json['backgroundColor'] : null,
backgroundAlpha: json.containsKey('backgroundAlpha') ? json['backgroundAlpha'] : null,
);
}