CropRect.fromJson constructor

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

Implementation

factory CropRect.fromJson(Map<String, dynamic> json) => CropRect(
    height: json["height"],
    width: json["width"],
    x: json["x"],
    y: json["y"],
);