forked from lxm_tools/flutter-picgo
16 lines
289 B
Dart
16 lines
289 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ReceivedNotification {
|
|
final int id;
|
|
final String title;
|
|
final String body;
|
|
final String payload;
|
|
|
|
ReceivedNotification({
|
|
@required this.id,
|
|
@required this.title,
|
|
@required this.body,
|
|
@required this.payload,
|
|
});
|
|
}
|