createTicket static method

Future<void> createTicket({
  1. List<String>? tag,
  2. String? subject = "Chat",
  3. String? requestDescription = "Hello",
})

Implementation

static Future<void> createTicket({
  List<String>? tag,
  String? subject = "Chat",
  String? requestDescription = "Hello",
}) async {
  await _channel.invokeMethod<void>('createTicket', {
    'tag' : tag,
    'subject' : subject,
    'requestDescription' : requestDescription,
  });
}