ref property

Reference get ref

A reference to the thing to complete.

See the PromptReference and ResourceTemplateReference types.

In the case of a ResourceTemplateReference, it must refer to a ResourceTemplate.

Implementation

Reference get ref {
  final ref = _value['ref'] as Reference?;
  if (ref == null) {
    throw ArgumentError('Missing ref field in $CompleteRequest.');
  }
  return ref;
}