39 lines
1.0 KiB
Dart
39 lines
1.0 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
class ContactUsController extends GetxController {
|
|
//contact us page controller
|
|
RxList<File?> attachmentFileList = [File("")].obs;
|
|
RxList<String> attachmentPathNameList = [""].obs;
|
|
|
|
//contact us details page controller
|
|
RxList<File?> attachmentFileDetailsList = [File("")].obs;
|
|
RxList<String> attachmentPathNameDetailsList = [""].obs;
|
|
|
|
RxList<dynamic> 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;
|
|
}
|