Hibok
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

14 行
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. }