CastInstruction constructor

CastInstruction({
  1. required int offset,
  2. required Value operand,
  3. required String targetType,
  4. required Variable result,
  5. bool isNullable = false,
})

Implementation

CastInstruction({
  required super.offset,
  required this.operand,
  required this.targetType,
  required this.result,
  this.isNullable = false,
});