reqDELETE method Null safety
DELETE 요청입니다.
Implementation
Future<dynamic> reqDELETE({required String path, Map<String, String>? queryParameters, Uint8List? body}) async {
try {
RestOptions options = RestOptions(
path: path,
queryParameters: queryParameters,
body: body,
);
RestOperation restOperation = Amplify.API.delete(restOptions: options);
return await restOperation.response;
} catch (e) {
rethrow;
}
}