Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Função converterMoedaParaDouble retornar 0 quando em branco #83

Open
lucasmiranda5 opened this issue Jan 31, 2023 · 2 comments
Open
Labels
enhancement New feature or request

Comments

@lucasmiranda5
Copy link

lucasmiranda5 commented Jan 31, 2023

Olá acho que seria mais interessante na função converterMoedaParaDouble se o valor for igual a vazio retornar o valor de 0 em vez de retornar um error,

static double converterMoedaParaDouble(String valor) {
    assert(valor.isNotEmpty);
    final value = double.tryParse(
        valor.replaceAll('R\$ ', '').replaceAll('.', '').replaceAll(',', '.'));

    return value ?? 0;
  }

Seria transformar esse código acima em

double converterMoedaParaDouble(String valor) {
    if (valor.isEmpty) return 0;
    final value = double.tryParse(valor.replaceAll('R\$ ', '').replaceAll('.', '').replaceAll(',', '.'));

    return value ?? 0;
  }
@rubensdemelo
Copy link
Collaborator

ótima sugestão. vou avalia-la.

@rubensdemelo rubensdemelo added the enhancement New feature or request label Feb 1, 2023
@rubensdemelo
Copy link
Collaborator

Talvez um outro método como tryConverterMoedaParaDouble, assim como o Dart tem o parse e tryParse.

Pq retornar é uma validação que não cabe ao package.

E sim, ao código que está chamando a função.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants