Javatpoint Logo
Javatpoint Logo

Flutter REST API

In this section, we are going to learn how we can access the REST API in the Flutter app. Today, most of the apps use remote data using APIs. So, this section will be the important part for those developers who want to make their carrier in Flutter.

Flutter provides http package to use http resources. The http package uses await and async features and provides many high-level methods such as read, get, post, put, head, and delete methods for sending and receiving data from remote locations. These methods simplify the development of REST-based mobile applications.

The detail explanation of the core methods of the http package are as follows:

Read: This method is used to read or retrieve the representation of resources. It requests the specified url by using the get method and returns the response as Future<String>.

Get: This method requests the specified url from the get method and returns a response as Future<response>. Here, the response is a class, which holds the response information.

Post: This method is used to submit the data to the specified resources. It requests the specified url by posting the given data and return a response as Future<response>.

Put: This method is utilized for update capabilities. It updates all the current representation of the target resource with the request payloads. This method request the specified url and returns a response as Future<response>.

Head: It is similar to the Get method, but without the response body.

Delete: This method is used to remove all the specified resources.

The http package also provides a standard http client class that supports the persistent connection. This class is useful when a lot of requests to be made on a particular server. It should be closed properly using the close() method. Otherwise, it works as an http class. The following code explains it more clearly.

To fetch data from the internet, you need to follow these necessary steps:

Step 1: Install the latest http package and add it to the project.

To install the http package, open the pubspec.yaml file in your project folder and add http package in the dependency section. You can get the latest http package here and add it like:

You can import the http package as:

Step 2: Next, make a network request by using the http package.

In this step, you need to make a network request by using the http.get() method

In the above code, the Future is a class that contains an object. The object represents a potential value or error.

Step 3: Now, convert the response getting from network request into a custom Dart object.

First, you need to create a Post class. The Post class received data from the network request and includes a factory constructor, which creates Post from JSON. You can create a Post class as below:

Now, you have to convert the http.response to a Post. The following code updates the fetchPost() function for returning a Future<Post>.

Step 4: Now, fetch the data with Flutter. You can call the fetch method in the initState(). The following code explains how you can fetch the data.

Step 5: Finally, display the data. You can display the data by using the FutureBuilder widget. This widget can work easily with async data sources.

Let us see the complete code to understand how Flutter works with REST API to fetch data from the network. You can learn more in detail from here.

The JSON file is shown below.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA