ExecutionProfile.fromMap constructor
Implementation
factory ExecutionProfile.fromMap(Map<Object?, Object?> value) =>
ExecutionProfile(
tagExpression: _requiredString(value, 'tagExpression'),
extensions: Map.unmodifiable({
for (final entry in value.entries)
if (entry.key is String && entry.key != 'tagExpression')
entry.key as String: _freeze(entry.value),
}),
);