ContentType constructor

ContentType({
  1. required String authorityId,
  2. required String typeId,
  3. required int versionMajor,
})

Implementation

ContentType({
  required this.authorityId,
  required this.typeId,
  required this.versionMajor,
});