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