meta property

TMeta? meta

A reflectively-instantiated version of metaNode, if it exists.

Throws a StateError if this node's metadata is incomplete.

Implementation

TMeta? get meta {
  if (isIncomplete) {
    throw StateError(
        'Metadata is incomplete; unsupported arguments $unsupportedArguments. '
        'Use `potentiallyIncompleteMeta` instead.');
  }
  return _meta;
}