getReminderTypes method

Future<List<ReminderType>> getReminderTypes()

Implementation

Future<List<ReminderType>> getReminderTypes() async {
  NetworkResponse response = await _api.getReminderTypes();
  return response.data ?? [];
}