commentTypeToJson function

String? commentTypeToJson(
  1. CommentType? commentType
)

Implementation

String? commentTypeToJson(enums.CommentType? commentType) {
  return enums.$CommentTypeMap[commentType];
}