removeApplication method

Future<void> removeApplication(
  1. ApplicationRemoveDto? applicationRemoveDto
)

Implementation

Future<void> removeApplication (
  ApplicationRemoveDto? applicationRemoveDto
) async {
  String path = "/application-operate";
  await delete(path, body: applicationRemoveDto, exemptClient:true) ?? {};
}