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