ContentTypeId constructor

ContentTypeId({
  1. String? authorityId,
  2. String? typeId,
  3. int? versionMajor,
  4. int? versionMinor,
})

Implementation

factory ContentTypeId({
  $core.String? authorityId,
  $core.String? typeId,
  $core.int? versionMajor,
  $core.int? versionMinor,
}) {
  final result = create();
  if (authorityId != null) result.authorityId = authorityId;
  if (typeId != null) result.typeId = typeId;
  if (versionMajor != null) result.versionMajor = versionMajor;
  if (versionMinor != null) result.versionMinor = versionMinor;
  return result;
}