getAllModels method

Future<List<T>> getAllModels()

Implementation

Future<List<T>> getAllModels() async {
  // In a real implementation: return await _database.getAllModels();
  print('DriftAdapter: Getting all models from $tableName');
  await Future.delayed(Duration(milliseconds: 10));
  return <T>[];
}