getApiResponse method

Future getApiResponse({
  1. Map<String, dynamic>? arguments,
})

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;
  }
}