func()

in VSNotification.go [17:24]


func (doc *VSNotificationDocument) FindKey(key string) (KeyValuePair, bool) {
	for _, entry := range doc.Field {
		if entry.Key == key {
			return entry, true
		}
	}
	return KeyValuePair{}, false
}