EpubLocator.fromJson constructor
Implementation
EpubLocator.fromJson(Map<String, dynamic> json) {
bookId = json['bookId'];
href = json['href'];
created = json['created'];
locations = json['locations'] != null
? new Locations.fromJson(json['locations'])
: null;
}