What is Model Classes? And how to create it 🔥|| Consuming a Rest API🔥 in Flutter

  Рет қаралды 28,717

Dev Stack

Dev Stack

Күн бұрын

Пікірлер: 52
@rajadongre4274
@rajadongre4274 3 жыл бұрын
Good explanation. One of the underrated channel❤️
@DevStack
@DevStack 3 жыл бұрын
Thanks raja ❤
@surajdevgan4202
@surajdevgan4202 4 жыл бұрын
yes sir, we want full tutorial for parsing json with model class
@DevStack
@DevStack 4 жыл бұрын
Sure working on it :)
@55ramya55
@55ramya55 2 жыл бұрын
Clear Explanation...loved it..looking forward for more advanced topics
@trickswithandro749
@trickswithandro749 Жыл бұрын
Bhai Bhai Bhaiiiiiiiii Jo koi na kr paya wo ap nae kr deya 😀 At last mai be sek gaya api hitting nd model class 🙂
@dcningbo
@dcningbo 2 жыл бұрын
I enjoyed the background music. Thank you.
@satdevlpr
@satdevlpr Жыл бұрын
Thanks .. Your way of explaining the concept is awesome... keep it up
@darshankhadse880
@darshankhadse880 3 жыл бұрын
Best one 👌🏻 keep growing
@Missponderlit
@Missponderlit 2 жыл бұрын
very good explanation. Thanks so much!
@thazeroword646
@thazeroword646 4 жыл бұрын
Please model and JSON full tutorial... Thanks
@DevStack
@DevStack 4 жыл бұрын
Sure :)
@lorenbeall147
@lorenbeall147 4 жыл бұрын
yes, me too i want like this tutorial
@vikramlimba8
@vikramlimba8 8 ай бұрын
thanks sir
@johnlao1469
@johnlao1469 3 жыл бұрын
THANK YOU FOR SAVING MY LIFE SIR YOU ARE TRULY A GOD PROGRAMMER.
@mohamedridzwan762
@mohamedridzwan762 3 жыл бұрын
Very useful channel 👍👍
@mohamedridzwan762
@mohamedridzwan762 3 жыл бұрын
Please do support this channel 💪
@sale7680
@sale7680 Жыл бұрын
It means that we creat model for ache table in backend for getting data ?
@lorenbeall147
@lorenbeall147 4 жыл бұрын
thank you for thise video
@DevStack
@DevStack 4 жыл бұрын
I am glad it helped you 😇😇😇 Please do #share and #subscribe so this channel will help to other people also :)
@ravronz9677
@ravronz9677 3 жыл бұрын
Thanks so much bhai
@hariprasadhari5045
@hariprasadhari5045 3 жыл бұрын
Thank you for this video
@haiderjaafer8164
@haiderjaafer8164 4 жыл бұрын
hi Dev Stack i am trying to add plugins in pubspec.yaml but it got an error ... Because model_json depends on json_serializable any from sdk which doesn't exist (could not find package json_serializable in the Flutter SDK), version solving failed.
@DevStack
@DevStack 4 жыл бұрын
In the description I provided a documentation link please check that you are using the exact spelling and exact place ( dev dependency or dependency) of your package :)
@haiderjaafer8164
@haiderjaafer8164 4 жыл бұрын
@@DevStack i have solved the pluigin by upgrade flutter to latest version but url is not working
@DevStack
@DevStack 4 жыл бұрын
The endpoint url was the demo purpose only. The code of backend you will get in a github repo (the link of the repo is in the description) you have to run the backend server or else you can use your own api end point :) This video will demonstrate you how you will work with the rest api in flutter
@haiderjaafer8164
@haiderjaafer8164 4 жыл бұрын
Dev Stack so how can create url like that one
@DevStack
@DevStack 4 жыл бұрын
1) Clone the git repo 2) go inside modelserver folder 3) npm install 4) then npm run dev :) But make sure you installed node js and mongodb in your system ;) If you are a linux user then I covered how to install node and mongodb in linux system watch it first :)
@mustafaninyolu
@mustafaninyolu 4 жыл бұрын
Good explanation, thanks a lot!
@kuldeepsingh-vm8zk
@kuldeepsingh-vm8zk 3 жыл бұрын
awesome bro
@aishvaryrathore4441
@aishvaryrathore4441 3 жыл бұрын
great video thanks:)
@hashWorld-0
@hashWorld-0 6 ай бұрын
thank u so much
@kevintailor51
@kevintailor51 4 жыл бұрын
You are using Vysor right? But how is your Vysor video quality that much better??
@DevStack
@DevStack 4 жыл бұрын
It also have option for high resolution
@kevintailor51
@kevintailor51 4 жыл бұрын
@@DevStack But its from Pro version right?
@DevStack
@DevStack 4 жыл бұрын
@@kevintailor51 No
@kevintailor51
@kevintailor51 4 жыл бұрын
@@DevStack Which version are you using? 3.1.0?
@DevStack
@DevStack 4 жыл бұрын
It is latest version 😅
@Rakesh_official_31
@Rakesh_official_31 3 жыл бұрын
Im new to flutter. I have this very complex api.. Which im not able to parse into dart. Could you help me out with the same?
@hectorprx
@hectorprx 4 жыл бұрын
Thanks
@DevStack
@DevStack 4 жыл бұрын
Happy to help :)
@SaurabhPandey-ww2uq
@SaurabhPandey-ww2uq 3 жыл бұрын
What is your vscode theme?
@DeshiTraditionReviewer
@DeshiTraditionReviewer Жыл бұрын
Thanks for you video but the api link is not working. Can you check it out?
@etherealcharms
@etherealcharms 3 жыл бұрын
Null error showed up for me. Adding 'required' fixed it. Model({required this.name, required this.phonenumber});
@darshankhadse880
@darshankhadse880 3 жыл бұрын
How to define all urls in one class and pass it to get and lost plz urgent help
@DevStack
@DevStack 3 жыл бұрын
Define an object of url and import it in every places where you want to use
@darshankhadse880
@darshankhadse880 3 жыл бұрын
@@DevStack would you plz give me example
@DevStack
@DevStack 3 жыл бұрын
class UserUrl { static String main="example.com"; String checkexist="$main/users/checkexist/"; String login="$main/users/login/"; String registerVendor="$main/users/registervendor/"; String createstorefront="$main/businesses/createstorefront/"; } Kind of this and import it and use it ( it was old type way of using) But you can follow the new pattern like I used in blog app series (created a network handler)
@darshankhadse880
@darshankhadse880 3 жыл бұрын
Hey dev i need your help... I have to upload list of multiple images to api how should i do using multipart http Plz give me solutions i have tried all things
@hiteshvadoliya2922
@hiteshvadoliya2922 3 жыл бұрын
good try
@szyszak9424
@szyszak9424 2 жыл бұрын
music totally unnecesarry in tutorial videos
@saran7403
@saran7403 Жыл бұрын
Hearts
бабл ти гель для душа // Eva mash
01:00
EVA mash
Рет қаралды 7 МЛН
КОГДА К БАТЕ ПРИШЕЛ ДРУГ😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 7 МЛН
Seja Gentil com os Pequenos Animais 😿
00:20
Los Wagners
Рет қаралды 91 МЛН
Flutter Class Models Demystified || How to create Models in Flutter
11:17
CodeMate Hussain
Рет қаралды 3,6 М.
Flutter Model Classes, JSON Model Classes Explained
22:04
The Tech Brothers
Рет қаралды 17 М.
Flutter Convert JSON to Dart Model Classes
13:33
Coding Orbit
Рет қаралды 16 М.
REST Call with Flutter - Http methods
19:55
CodeX
Рет қаралды 73 М.
REST API with GetX | Flutter tutorial | Shopping app
26:43
REST API with Flutter | Step by step tutorial
11:10
CodeX
Рет қаралды 164 М.
Flutter NewsCloud App -How to turn json data to models | بالعربي
16:10
ثروت سامي | Tharwat Samy
Рет қаралды 13 М.
Flutter fromJson() to convert json to class object | Dart
3:47
How to create  a model class || fromJson || toJson بالعربي
18:56
Programming Army
Рет қаралды 1,3 М.