loris/lib/pages/notifications/single_notif.dart

15 lines
311 B
Dart
Raw Normal View History

2022-08-15 21:30:53 +00:00
import 'package:flutter/material.dart';
class SingleNotif extends StatelessWidget {
const SingleNotif({
required this.content,
Key? key,
}) : super(key: key);
final Map<String, dynamic> content;
@override
Widget build(BuildContext context) {
return Text(content["id"].toString());
}
}