Hibok
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

14 wiersze
311 B

  1. import 'package:flutter/material.dart';
  2. class ReceivedNotification {
  3. final int id;
  4. final String title;
  5. final String body;
  6. final String payload;
  7. ReceivedNotification(
  8. {@required this.id,
  9. @required this.title,
  10. @required this.body,
  11. @required this.payload});
  12. }