BitFieldDef constructor

const BitFieldDef({
  1. required String name,
  2. required int high,
  3. required int low,
})

Creates a bit-field definition.

Implementation

const BitFieldDef({
  required this.name,
  required this.high,
  required this.low,
});