skip to Main Content

Remove special character in flutter

I have a String, named a[1]. How can I remove "" to make the final output as below? /data/user/0/com.xxx/xxx/ABC Home_2-2-2_12 Jan 2024-12 Jan 2024.pdf Below is the code var a = contentDisposition!.split(";"); debugPrint("eev ${a[1]}"); // filename="ABC Home_2-2-2_12 Jan 2024-12 Jan…

VIEW QUESTION
Back To Top
Search