NullCheckInstruction constructor

NullCheckInstruction({
  1. required int offset,
  2. required Value operand,
  3. required Variable result,
})

Implementation

NullCheckInstruction({
  required super.offset,
  required this.operand,
  required this.result,
});