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