PreviewSize.fromJson constructor

PreviewSize.fromJson(
  1. dynamic json
)

Implementation

PreviewSize.fromJson(dynamic json) {
  width = json["width"];
  height = json["height"];
}