Returns an array of subtitle of the choice
subtitle
@override List<String>? get subtitle { return isNotEmpty ? choice .map((S2Choice<T> item) => item.subtitle) .toList() .cast<String>() : null; }