deFormatWithHyphen method Null safety

String deFormatWithHyphen(
  1. String value
)

Quita el formato específico de RUT de un text y lo deja con el guión.

print(RUTValidator.deformat('12.933.245-2'));//12933245-2

Implementation

static String deFormatWithHyphen(String value) {
  return value.split('.').join('');
}