value property

int value

Implementation

int get value => data.inputs
    .map((input) => input.value)
    .reduce((value, total) => value + total)
    .toInt();