Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexios80 committed Oct 20, 2024
1 parent 1abfb3d commit 2a7f14e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions hive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ class Person extends HiveObject {
import 'package:hive_ce/hive.dart';
import 'person.dart';
part 'hive_adapters.hive.dart';
@GenerateAdapters([AdapterSpec<Person>()])
// Annotations must be on some element
// ignore: unused_element
Expand Down
2 changes: 2 additions & 0 deletions hive/readme/store_objects/hive_adapters.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import 'package:hive_ce/hive.dart';
import 'person.dart';

part 'hive_adapters.hive.dart';

@GenerateAdapters([AdapterSpec<Person>()])
// Annotations must be on some element
// ignore: unused_element
Expand Down
1 change: 1 addition & 0 deletions hive/readme/store_objects/hive_adapters.hive.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
part of 'hive_adapters.dart';

0 comments on commit 2a7f14e

Please sign in to comment.