isChildArgument property

bool get isChildArgument

Whether this is the child argument.

Implementation

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