AuditRecordAuthor constructor

AuditRecordAuthor({
  1. required AuditRecordAuthorType type,
  2. required String displayName,
  3. required Map<String, dynamic> operations,
  4. String? username,
  5. String? userKey,
  6. String? accountId,
  7. String? accountType,
  8. bool? externalCollaborator,
  9. bool? isExternalCollaborator,
  10. String? publicName,
})

Implementation

AuditRecordAuthor(
    {required this.type,
    required this.displayName,
    required this.operations,
    this.username,
    this.userKey,
    this.accountId,
    this.accountType,
    bool? externalCollaborator,
    bool? isExternalCollaborator,
    this.publicName})
    : externalCollaborator = externalCollaborator ?? false,
      isExternalCollaborator = isExternalCollaborator ?? false;