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