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