Changes.fromJson constructor
Implementation
factory Changes.fromJson(Map<String, dynamic> json) {
return Changes(
field: json['field'],
label: json['label'],
newText: json['new_text'],
newValue: json['new_value'],
oldText: json['old_text'],
oldValue: json['old_value'],
options: json['options'],
typeId: json['type_id'],
);
}