fromJson static method

BackgroundCustomization fromJson(
  1. dynamic json
)

Implementation

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