Questions tagged [flutter-freezed]

95 questions
0
votes
3 answers

Flutter adding to state using Riverpod

After search and learn more about how can i add or update some field of data structure, we have below implementation here we want to have a simple order structure with data which user can add service to order or update selected service count, for…
DolDurma
  • 15,753
  • 51
  • 198
  • 377
0
votes
1 answer

dart freezed convert to another data type

@JsonKey(name: "favourite") @Default("") String favourite In my json favourite is rather Y and N , which mean true or false, possible to convert directly in freezed? So I can directly use boolean, instead of String
FeelRightz
  • 2,777
  • 2
  • 38
  • 73
-1
votes
1 answer

How to use freezed with floor database in flutter?

Freezed uses const factory contructor that doesn't work along with floor library.
-1
votes
1 answer

How I can acess to varibles?

I try to use @frezzed tech. in my flutter ptoject for working with DB-firbase. How I can acess to class vars for manipulating? import 'package:freezed_annotation/freezed_annotation.dart'; part 'Person.freezed.dart'; @freezed class Person with…
-3
votes
2 answers

Unhandled Exception: type 'List' is not a subtype of type 'List

Shouldn't we be able to assign a value to a field IF IT IS THE SAME TYPE UNDER THE HOOD - E.G. IN THE DEBUGGER IT SAYS IT IS A List? and you are trying to assign it to a List?, and just cast it to the correct type or to…
BeniaminoBaggins
  • 11,202
  • 41
  • 152
  • 287
1 2 3 4 5 6
7