AmendmentLog constructor

AmendmentLog({
  1. String? entityUuid,
  2. EmployeeMetadata? metadata,
  3. AMENDMENT_LOG_REF_FOR? refFor,
  4. Int64? refId,
  5. 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;
}