textList property

List<String> textList

Implementation

List<String> get textList {
  final List<String> tmp = <String>[];
  for (final TimeCode timeCode in timeCodes) {
    tmp.add(timeCode.title);
  }
  return tmp;
}