withVat method

double withVat({
  1. double rate = 0.20,
})

Implementation

double withVat({double rate = 0.20}) => this * (1 + rate);