fromJson static method

BackgroundLayerData fromJson(
  1. Map json
)
override

Implementation

static BackgroundLayerData fromJson(Map json) {
  return BackgroundLayerData(image: ImageItem.fromJson(json['image']));
}