isChildrenArgument property

bool get isChildrenArgument

Whether this is the children argument.

Implementation

bool get isChildrenArgument {
  final self = this;
  return self is NamedExpression && self.name.label.name == 'children';
}