UContentCreateParams.fromMap constructor
Implementation
factory UContentCreateParams.fromMap(Map<String, dynamic> json) => UContentCreateParams(
title: json["title"],
description: json["description"],
subTitle: json["subTitle"],
instagram: json["instagram"],
tags: List<int>.from(json["tags"].map((dynamic x) => x)),
);