createApplication method
Implementation
Future<ApplicationCreateResultDto?> createApplication (
ApplicationCreateDto? applicationCreateDto
) async {
String path = "/application-operate";
return ApplicationCreateResultDto.fromJson(
await post(path, body: applicationCreateDto, exemptClient:true) ?? {}
);
}