copyWith method
Implementation
@override
PushMessageContentGameScore copyWith({
String? title,
int? score,
bool? isPinned,
}) =>
PushMessageContentGameScore(
title: title ?? this.title,
score: score ?? this.score,
isPinned: isPinned ?? this.isPinned,
);