Dimensions.fromJson constructor

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

Implementation

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