AwaitInstruction constructor

AwaitInstruction({
  1. required int offset,
  2. required Value future,
  3. required Variable result,
})

Implementation

AwaitInstruction({
  required super.offset,
  required this.future,
  required this.result,
});