Pop up notification pt1
This commit is contained in:
parent
88b7f23d75
commit
c7b1b72783
5 changed files with 264 additions and 4 deletions
|
|
@ -7,6 +7,16 @@ import 'package:patient_manager/mih_objects/business_user.dart';
|
|||
import 'package:patient_manager/mih_objects/notification.dart';
|
||||
import 'package:patient_manager/mih_objects/patients.dart';
|
||||
|
||||
class NotificationArguments {
|
||||
final String title;
|
||||
final String body;
|
||||
|
||||
NotificationArguments(
|
||||
this.title,
|
||||
this.body,
|
||||
);
|
||||
}
|
||||
|
||||
class BusinessArguments {
|
||||
final AppUser signedInUser;
|
||||
final BusinessUser? businessUser;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue