GlbChunk constructor

GlbChunk({
  1. required int length,
  2. required String type,
  3. required Uint8List data,
})

Implementation

GlbChunk({
  required this.length,
  required this.type,
  required this.data,
});