CommentsInfo.optional constructor
Implementation
factory CommentsInfo.optional(
{String comment = "",
required String associatedId,
required int matchNumber,
required int teamNumber}) =>
CommentsInfo(
comment: comment,
associatedId: associatedId,
matchNumber: matchNumber,
teamNumber: teamNumber);