copyWith method

  1. @override
PushMessageContentGameScore copyWith({
  1. String? title,
  2. int? score,
  3. bool? isPinned,
})
override

Implementation

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