UContentJson.fromMap constructor

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

Implementation

factory UContentJson.fromMap(Map<String, dynamic> json) => UContentJson(
      title: json["title"],
      subTitle: json["subTitle"],
      description: json["description"],
      instagram: json["instagram"],
      telegram: json["telegram"],
      whatsapp: json["whatsapp"],
      phone: json["phone"],
    );