UTicketJson.fromMap constructor
Implementation
factory UTicketJson.fromMap(Map<String, dynamic> json) => UTicketJson(
title: json["title"],
description: json["description"],
detail1: json["detail1"],
detail2: json["detail2"],
instagram: json["instagram"],
telegram: json["telegram"],
whatsapp: json["whatsapp"],
phone: json["phone"],
);