aves/lib/widgets/viewer/overlay/notifications.dart
2022-02-28 14:46:46 +09:00

15 lines
323 B
Dart

import 'package:flutter/material.dart';
@immutable
class ToggleOverlayNotification extends Notification {
final bool? visible;
const ToggleOverlayNotification({this.visible});
}
@immutable
class ViewEntryNotification extends Notification {
final int index;
const ViewEntryNotification({required this.index});
}