UIDocumentPickerViewControllerの'init(documentTypes:in:)' was deprecated in iOS 14.0 解決策

元々:

let documentPicker = UIDocumentPickerViewController(documentTypes: ["public.json"], in: .import)

現在:

let documentPicker = UIDocumentPickerViewController(forOpeningContentTypes: [.json])