createTicket method
Create a new support ticket.
subject: The ticket subject linedescription: The ticket body/descriptiontags: Optional tags for routingcustomFields: Optional custom field values (field_id -> value)attachmentTokens: Optional list of upload tokens from uploadAttachment
Returns the created ZendeskTicket.
Implementation
Future<ZendeskTicket?> createTicket({
required String subject,
required String description,
List<String> tags = const [],
Map<String, String> customFields = const {},
List<String> attachmentTokens = const [],
}) {
throw UnimplementedError('createTicket() has not been implemented.');
}