aves_mio/lib/widgets/common/providers/highlight_info_provider.dart
Fabio Micheluz 2c988f959b
Some checks are pending
Quality check / Flutter analysis (push) Waiting to run
Quality check / CodeQL analysis (java-kotlin) (push) Waiting to run
first commit
2026-02-19 13:25:23 +01:00

11 lines
293 B
Dart

import 'package:aves/model/highlight.dart';
import 'package:provider/provider.dart';
class HighlightInfoProvider extends ChangeNotifierProvider<HighlightInfo> {
HighlightInfoProvider({
super.key,
super.child,
}) : super(
create: (context) => HighlightInfo(),
);
}