Element.fromJson constructor

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

Implementation

factory Element.fromJson(Map<String, dynamic> json) => Element(
      elementHandle: Handle.fromJson(json["handle~"]),
      handle: json["handle"],
    );