ReaderSegment.fromJson constructor
Implementation
factory ReaderSegment.fromJson(Map<String, dynamic> json) {
return ReaderSegment(
customerId: json['customerId'],
segmentName: json['segmentName'],
totalReadToday: json['totalReadToday'],
);
}