Models are the core of the data flow in any of the MVC architecture . Well, there is absolutely no hard and fast rule to use models and you can achieve your task without using the models, but, this can give rise to many problems and it can become extremely difficult to manage the data flow in our application.
Read moreWhat is freezed class in flutter?
To define a class using Freezed, you will not declare properties but instead factory constructors . For example, if you want to define a Person class, which has 2 properties: name, a String. age, an int.
Read more