copyWith method

  1. @override
PushMessageContentGame copyWith({
  1. String? title,
  2. bool? isPinned,
})
override

Implementation

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