Hibok
您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 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. }