ChunkData.fromJson constructor

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

Implementation

factory ChunkData.fromJson(Map<String, dynamic> json) {
  return ChunkData(stringValue: json['stringValue']);
}