unpack method

NodeT unpack()

Implementation

NodeT unpack() => NodeT(
  name: name,
  children: const fb.ListReader<int>(
    fb.Int32Reader(),
    lazy: false,
  ).vTableGetNullable(_bc, _bcOffset, 6),
  transform: transform?.unpack(),
  meshPrimitives: meshPrimitives?.map((e) => e.unpack()).toList(),
  skin: skin?.unpack(),
  combinedLocalAabb: combinedLocalAabb?.unpack(),
);