Updated 29 April 2023
Either class of dartz library is used to return two type of data from a single function.
Suppose, there is an method which convert input String value in int and return it.
Here, we can only return a int value. If we get any error and handle it in our code, still we will have to return int value only. We are not able to send error message in this case.
Check our Flutter app development services page.
If we wanna return two type of data, we can use Either class of dartz library. For this, we need to add dartz library in our project.
In above example, we can return int value as successful result and error message in failure case.
NOTE : To check latest package & learn more about dartz package, check following link : dartz
Import following package :
Now, wrap data which we wanna return, in Left & Right class and return them.
NOTE : Here, we wrap success result in Right class and failure result in Left class. You can change them. Also, you can wrap any object class as well.
Through fold method, we can handle result. For more methods of Either class, please check following link : Class-methods
You can check following link to check more blog related to flutter & dart : Blog
Hope, this blog will be helpful to you.
If you have more details or questions, you can reply to the received confirmation email.
Back to Home
Be the first to comment.