copyWith method Null safety
Implementation
Comment copyWith({
String? commentKey,
String? videoId,
String? message,
}) {
return Comment(
commentKey: commentKey ?? this.commentKey,
videoId: videoId ?? this.videoId,
message: message ?? this.message,
);
}