ChangeLog constructor

ChangeLog({
  1. String? accountId,
  2. String? action,
  3. DateTime? changeTime,
  4. String? fieldName,
  5. String? id,
  6. String? kind,
  7. String? newValue,
  8. String? objectId,
  9. String? objectType,
  10. String? oldValue,
  11. String? subaccountId,
  12. String? transactionId,
  13. String? userProfileId,
  14. String? userProfileName,
})

Implementation

ChangeLog({
  this.accountId,
  this.action,
  this.changeTime,
  this.fieldName,
  this.id,
  this.kind,
  this.newValue,
  this.objectId,
  this.objectType,
  this.oldValue,
  this.subaccountId,
  this.transactionId,
  this.userProfileId,
  this.userProfileName,
});