parseRoot method

Future<GltfRoot> parseRoot(
  1. String filePath
)

Implementation

Future<GltfRoot> parseRoot(String filePath) async {
  final glb = await parseGlb(filePath);
  return glb.parse();
}