Skip to content

Commit

Permalink
Redeme file changes
Browse files Browse the repository at this point in the history
  • Loading branch information
MOKTADIR authored and MOKTADIR committed Feb 12, 2023
1 parent 8f835be commit 685c5c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ After setting up all the needed thing now lets talk about folder structure which
final awardList = RxList<AwardData>();
getAwardList() async {
showLoading('Loading award');
showLoading();
var response = await DioClient().get(
url: ApiUrl.allAward,
Expand Down Expand Up @@ -281,7 +281,7 @@ After setting up all the needed thing now lets talk about folder structure which
"gift": gift,
"description": description,
};
showLoading('Creating award...');
showLoading();
var response = await DioClient()
.post(
url: ApiUrl.createHrAward,
Expand All @@ -307,7 +307,7 @@ After setting up all the needed thing now lets talk about folder structure which
"name": editNameController.text,
"email": editMailController.text,
};
showLoading('Updating Profile...');
showLoading();
var response = await DioClient()
.multipartSingleFile(
url: ApiUrl.updateProfile,
Expand Down

0 comments on commit 685c5c5

Please sign in to comment.