feat(notification_bloc) add new package for push notification management

This commit is contained in:
AN12345
2022-11-16 16:58:19 -05:00
parent 14b7f31b53
commit b033b97917
72 changed files with 1691 additions and 0 deletions
@@ -0,0 +1,16 @@
import 'package:wyatt_notification_bloc/wyatt_notification_bloc.dart';
import 'package:test/test.dart';
void main() {
group('A group of tests', () {
final awesome = Awesome();
setUp(() {
// Additional setup goes here.
});
test('First Test', () {
expect(awesome.isAwesome, isTrue);
});
});
}