Parameter.fromJson constructor

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

Implementation

factory Parameter.fromJson(final Map<String, dynamic> json) {
  return Parameter(
    type: json['type'],
    value: json['value'],
    name: json['name'],
    unit: json['unit'],
  );
}