getSpecialFiledColor method

Color? getSpecialFiledColor(
  1. List<Color?>? myList
)

Implementation

Color? getSpecialFiledColor(List<Color?>? myList) {
  return myList![Random().nextInt(myList.length)];
}