🅵

List<Object> arr = [
{ 'label': '10%', 'value': 10 },
{ 'label': '15%', 'value': 15 },
{ 'label': '20%', 'value': 20 },
{ 'label': 'no', 'value': 0 },
];
double value = 233;
Object active = arr[2];
double tips = value / 100 * (100 + active['value']);
print(tips);