Value.fromJson constructor

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

Implementation

Value.fromJson(
Map<String, dynamic> json) {
  label = json['label'];
  name = json['name'];
  id = json['id'];
}