Proof.fromMap constructor

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

Implementation

factory Proof.fromMap(Map<String, dynamic> json) => Proof(
  start: json["start"] == null ? null : json["start"],
  startIndex: json["startIndex"] == null ? null : json["startIndex"],
  end: json["end"] == null ? null : json["end"],
  endIndex: json["endIndex"] == null ? null : json["endIndex"],
  anchor: json["anchor"] == null ? null : json["anchor"],
  entries: json["entries"] == null ? null : List<Entry>.from(json["entries"].map((x) => Entry.fromMap(x))),
);