jsonTree method
Calls the json_tree
table-valued function on this
binary JSON buffer,
optionally using path
as the root path.
See JsonTableFunction and JsonExtensions.jsonTree for more details.
Implementation
JsonTableFunction jsonTree(DatabaseConnectionUser database, [String? path]) {
return dartCast<String>().jsonTree(database, path);
}