hasSeedData method

  1. @override
Future<bool> hasSeedData()
override

Check if seed data exists

Implementation

@override
Future<bool> hasSeedData() async {
  final count = await isar.componentModels.count();
  return count > 0;
}