import 'dart:io'; import 'package:get/get.dart'; class ContactUsController extends GetxController { //contact us page controller RxList attachmentFileList = [File("")].obs; RxList attachmentPathNameList = [""].obs; //contact us details page controller RxList attachmentFileDetailsList = [File("")].obs; RxList attachmentPathNameDetailsList = [""].obs; RxList contactUsDetailsChatContent = [ { "initial_name": "SM", "date": "16 Feb 2024, 11 : 35PM", "content": """ Dear Customer, Thank you for contacting Traders Circuit Your Service reference no is 18663765 when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Regards, Centralised Service Desk Traders Circuit""", }, { "initial_name": "AM", "date": "16 Feb 2024, 11 : 35PM", "content": "Thank You.......", } ].obs; }