PushMessageContentGameScore constructor

const PushMessageContentGameScore({
  1. required String title,
  2. required int score,
  3. required bool isPinned,
})

A new high score was achieved in a game

Implementation

const PushMessageContentGameScore({
  required this.title,
  required this.score,
  required this.isPinned,
});