FileChunk constructor

FileChunk({
  1. ChunkType type = ChunkType.file,
  2. required Map<String, dynamic> data,
})

Implementation

FileChunk({super.type = ChunkType.file, required this.data}) : super(data: data);