aves_mio22/lib/widgets/common/thumbnail/notifications.dart
2026-04-18 20:05: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);
}