commentsCSVData property

String commentsCSVData

Implementation

String get commentsCSVData {
  return "Match,Team,Comment\n${comments.matchNumber},${comments.teamNumber},${comments.isEmpty ? "No Comments" : comments.comment!.trim().replaceAll(",", "_")}";
}