fromJson static method
Implementation
static AuditLogChange fromJson(Map<String, dynamic> json) {
return AuditLogChange(
key: json['key'],
newValue: json['new_value'],
oldValue: json['old_value'],
);
}
static AuditLogChange fromJson(Map<String, dynamic> json) {
return AuditLogChange(
key: json['key'],
newValue: json['new_value'],
oldValue: json['old_value'],
);
}