Dimension.fromJson constructor

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

Implementation

Dimension.fromJson(Map<String, dynamic> json)
    : length = json['length'],
      width = json['width'],
      height = json['height'];