Dimensions.fromJson constructor

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

Implementation

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