SForEachPartsWithDeclaration constructor

SForEachPartsWithDeclaration({
  1. required int offset,
  2. required int length,
  3. SDeclaredIdentifier? loopVariable,
  4. SExpression? iterable,
  5. bool isAwait = false,
})

Implementation

SForEachPartsWithDeclaration({
  required this.offset,
  required this.length,
  this.loopVariable,
  this.iterable,
  this.isAwait = false,
});