fetchSymptomsTemplates method
Implementation
@override
Future<List<dynamic>> fetchSymptomsTemplates() async {
// Placeholder code to simulate fetching symptoms templates
return Future.value([
{'id': 'symptomTemplate1', 'name': 'Symptoms Template 1'},
{'id': 'symptomTemplate2', 'name': 'Symptoms Template 2'}
]);
}