Hibok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 rivejä
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. }