Entry.fromMap constructor

Entry.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory Entry.fromMap(Map<String, dynamic> json) => Entry(
  hash: json["hash"] == null ? null : json["hash"],
  right: json["right"] == null ? null : json["right"],
);