createApplication method

Future<ApplicationCreateResultDto?> createApplication(
  1. ApplicationCreateDto? applicationCreateDto
)

Implementation

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