CitationSource.fromJson constructor

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

Implementation

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