resolveNewAttachmentFilename method
Resolves the filename for new attachment items. Concatenates the attachment ID and extension by default.
Implementation
Future<String> resolveNewAttachmentFilename(
String attachmentId,
String? fileExtension,
) async {
return '$attachmentId.${fileExtension ?? 'dat'}';
}