I want to store list of strings in one column in table. How can it be implemented?
You can use a TypeConverter for this. In your case, you can write a class ListInColumnConverter extends TypeConverter<List<String>, String> that uses json.encode and json.decode to read and write lists.
Most helpful comment
You can use a
TypeConverterfor this. In your case, you can write aclass ListInColumnConverter extends TypeConverter<List<String>, String>that usesjson.encodeandjson.decodeto read and write lists.