copyWith method
Implementation
CommentRequest copyWith(
{enums.CommentType? entityType, int? entityId, String? body}) {
return CommentRequest(
entityType: entityType ?? this.entityType,
entityId: entityId ?? this.entityId,
body: body ?? this.body);
}