PrintAssetImage.fromJson constructor

PrintAssetImage.fromJson(
  1. Map<String, dynamic> json
)

Implementation

PrintAssetImage.fromJson(Map<String, dynamic> json) {
  imagePath = json['image_path'];
  width = json['width'];
  height = json['height'];
  position = json['position'];
}