jsonTree method

JsonTableFunction jsonTree(
  1. DatabaseConnectionUser database, [
  2. String? path
])

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);
}