LogbookLogQCSampleLC constructor

LogbookLogQCSampleLC({
  1. Int64? id,
  2. bool? isActive,
  3. Int64? timestamp,
  4. String? refUuid,
  5. QC_SAMPLE_LIFECYCLE? operation,
  6. String? username,
  7. String? name,
  8. Int64? userId,
  9. String? appComment,
  10. String? userComment,
})

Implementation

factory LogbookLogQCSampleLC({
  $fixnum.Int64? id,
  $core.bool? isActive,
  $fixnum.Int64? timestamp,
  $core.String? refUuid,
  QC_SAMPLE_LIFECYCLE? operation,
  $core.String? username,
  $core.String? name,
  $fixnum.Int64? userId,
  $core.String? appComment,
  $core.String? userComment,
}) {
  final result = create();
  if (id != null) result.id = id;
  if (isActive != null) result.isActive = isActive;
  if (timestamp != null) result.timestamp = timestamp;
  if (refUuid != null) result.refUuid = refUuid;
  if (operation != null) result.operation = operation;
  if (username != null) result.username = username;
  if (name != null) result.name = name;
  if (userId != null) result.userId = userId;
  if (appComment != null) result.appComment = appComment;
  if (userComment != null) result.userComment = userComment;
  return result;
}