Page.fromMap constructor

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

Implementation

factory Page.fromMap(Map<String, dynamic> json) => Page(
  signer: json["signer"] == null ? null : PageSigner.fromMap(json["signer"]),
  signatures: json["signatures"] == null ? null : List<RcpSignature>.from(json["signatures"].map((x) => RcpSignature.fromMap(x))),
);