How to Sort List of Week Day names in flutter in ascending order
I have a list of Week Day names in random order, how to sort it in ascending order e.g. Monday, Tuesday, Wednesday … List [Friday, Monday, Sunday, Wednesday] Desired List [Monday, Wednesday, Friday, Sunday] I have tried list.sort((a, b) =>…