I have a list. I want to convert this list to String data. I try to convert like this below, but brackets [] could not delete.
My List datas: [6, 8, 9, 11, 14, 15, 16, 133, 134, 135, 136, 138]
I tried like this to convert.
List value = [6, 8, 9, 11, 14, 15, 16, 133, 134, 135, 136, 138]
data = value.toString();
My data Output like:
print(data);
[6, 8, 9, 11, 14, 15, 16, 133, 134, 135, 136, 138]
But it doesn't work.
How can I convert this list to string without [].
Thanks.