getRawListFineTunes method
List your organization's fine-tuning jobs, return a Map
Implementation
Future<Map<String, dynamic>> getRawListFineTunes() async {
try {
_checkApi();
final result = await service.getListFineTunes(apiKey: _apiKey);
return result.toMap();
} catch (e) {
throw _exceptionCheck(e);
}
}