CompactCodecInterface constructor

CompactCodecInterface({
  1. required int id,
  2. required int type,
  3. List<String>? path,
  4. List<String>? docs,
})

Implementation

CompactCodecInterface({
  required super.id,
  required this.type,
  super.path,
  super.docs,
}) : super(kind: TypeKind.compact);