deleteLearningPath method

Future<void> deleteLearningPath(
  1. String pathId
)

Implementation

Future<void> deleteLearningPath(String pathId) async {
  await _client.from('learning_paths').delete().eq('id', pathId);
}