TypeFieldNode constructor

TypeFieldNode({
  1. required String name,
  2. required int width,
  3. String? value,
  4. List<TypeFieldNode> children = const [],
  5. int startBit = 0,
})

Creates a type field node.

Implementation

TypeFieldNode({
  required this.name,
  required this.width,
  this.value,
  this.children = const [],
  this.startBit = 0,
});