CitationSource.fromJson constructor
Implementation
factory CitationSource.fromJson(Map<String, dynamic> json) {
return CitationSource(
startIndex: json['startIndex'],
endIndex: json['endIndex'],
uri: json['uri'],
license: json['license'],
);
}