UContentLink.fromMap constructor

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

Implementation

factory UContentLink.fromMap(Map<String, dynamic> json) => UContentLink(
  title: json["title"],
  url: json["url"],
  iconBase64: json["iconBase64"],
);