removerSimboloMoeda static method

String removerSimboloMoeda(
  1. String valor
)

Remover o símbolo R$

Implementation

static String removerSimboloMoeda(String valor) {
  assert(valor.isNotEmpty);
  return valor.replaceAll('R\$ ', '');
}