UContentCreateParams.fromMap constructor

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

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)),
    );