AmendmentLog constructor
AmendmentLog({
- String? entityUuid,
- EmployeeMetadata? metadata,
- AMENDMENT_LOG_REF_FOR? refFor,
- Int64? refId,
- String? comment,
Implementation
factory AmendmentLog({
$core.String? entityUuid,
EmployeeMetadata? metadata,
AMENDMENT_LOG_REF_FOR? refFor,
$fixnum.Int64? refId,
$core.String? comment,
}) {
final result = create();
if (entityUuid != null) result.entityUuid = entityUuid;
if (metadata != null) result.metadata = metadata;
if (refFor != null) result.refFor = refFor;
if (refId != null) result.refId = refId;
if (comment != null) result.comment = comment;
return result;
}