getApiResponse method
Implementation
Future getApiResponse({Map<String, dynamic>? arguments}) async {
try {
return true;
} on PlatformException catch (e) {
if (kDebugMode) {
print("Failed to getApiResponse: '${e.message}'.");
}
return true;
}
}