ChunkMeta.fromJson constructor

ChunkMeta.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ChunkMeta.fromJson(Map<String, dynamic> json) => ChunkMeta(
  id: json['id'] as String,
  seq: json['seq'] as int,
  total: json['total'] as int,
);