ChunkMeta constructor

const ChunkMeta({
  1. required String id,
  2. required int seq,
  3. required int total,
})

Implementation

const ChunkMeta({
  required this.id,
  required this.seq,
  required this.total,
});