Property.fromJson constructor

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

Implementation

Property.fromJson(Map<String, dynamic> json) {
  name = json['name'];
  type = json['type'];
  value = json['value'];
}