I have a list. I want to convert it to string. However, the results are a bit different from what I expected.
Expected result:
'["a", "b", "c", "d"]'
Actual result:
[a, b, c, d]
My code:
final List list = ["a", "b", "c", "d"];
print(list.toString());
How can I get my expected results? I would appreciate any help. Thank you in advance!