CLID constructor

const CLID({
  1. required String namespace,
  2. required EntityType type,
  3. required String uuid,
  4. required String fullId,
  5. required String shortForm,
  6. required String url,
})

Implementation

const CLID({
  required this.namespace,
  required this.type,
  required this.uuid,
  required this.fullId,
  required this.shortForm,
  required this.url,
});