Yield constructor
Yield(
- int invocationRequestId, {
- YieldOptions? options,
- List? arguments,
- 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;
}