valueInfoAsync
fun <T> valueInfoAsync(formSchema: Schema<T>, formValue: T, path: Path = AbsolutePath.MATCH_ALL, coroutineScope: CoroutineScope = GlobalScope): CompletableFuture<List<ValueInfo<*>>>
fun <T> valueInfoAsync(formSchema: Schema<T>, formValue: T, path: String, coroutineScope: CoroutineScope = GlobalScope): CompletableFuture<List<ValueInfo<*>>>
Returns a future that completes with a list of information about the parts of the form value formValue (with schema formSchema) matching path.
The future will complete exceptionally with InvalidPathException if path matches no schemas.