withoutVat method

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

Implementation

double withoutVat({double rate = 0.20}) => this / (1 + rate);