aves_mio18/lib/widgets/common/thumbnail/notifications.dart
2026-04-14 09:53:02 +02:00

9 lines
221 B
Dart

import 'package:aves/model/entry/entry.dart';
import 'package:flutter/widgets.dart';
@immutable
class OpenViewerNotification extends Notification {
final AvesEntry entry;
const OpenViewerNotification(this.entry);
}