Yield constructor

Yield(
  1. int invocationRequestId, {
  2. YieldOptions? options,
  3. List? arguments,
  4. Map<String, dynamic>? argumentsKeywords,
})

Implementation

Yield(
  this.invocationRequestId, {
  this.options,
  List<dynamic>? arguments,
  Map<String, dynamic>? argumentsKeywords,
}) {
  id = MessageTypes.codeYield;
  this.arguments = arguments;
  this.argumentsKeywords = argumentsKeywords;
}