MmAudit constructor

MmAudit({
  1. String? id,
  2. int? createAt,
  3. String? userId,
  4. String? action,
  5. String? extraInfo,
  6. String? ipAddress,
  7. String? sessionId,
})

Returns a new MmAudit instance.

Implementation

MmAudit({
  this.id,
  this.createAt,
  this.userId,
  this.action,
  this.extraInfo,
  this.ipAddress,
  this.sessionId,
});