DART: ISSUE A value of type 'num' can't be assigned to a variable of type 'int'

727 Views Asked by At

enter image description here

I want to calculate the sum of the given values but i recieve this error

1

There are 1 best solutions below

0
On

Change var to int

for (int value in values) {
  sum += value;
}

and change

values = ['1, 3, 5, 7, 9']

to

values = [1, 3, 5, 7, 9]