metadata property
Metadata
get
metadata
The global test metadata derived from this configuration.
Implementation
Metadata get metadata {
if (tags.isEmpty && onPlatform.isEmpty) return _metadata;
return _metadata.change(
forTag: tags.map((key, config) => MapEntry(key, config.metadata)),
onPlatform: onPlatform.map(
(key, config) => MapEntry(key, config.metadata),
),
);
}