removeCurrencyMask property
String
get
removeCurrencyMask
Implementation
String get removeCurrencyMask => replaceAll('+', '')
.replaceAll('(', '')
.replaceAll('/', '')
.replaceAll(')', '')
.replaceAll(' ', '')
.replaceAll('-', '')
.replaceAll('R\$', '')
.replaceAll('.', '')
.replaceAll(',', '.')
.trim();