split a String into colums list in dart-flutter
How to split this "example#example" To show like this like columns 1.example 2.example final String list = data!.list!.split('#').first; result >>>> example How to show example example from example#example