currentOutput property
String
get
currentOutput
The formatted output for the digits entered so far.
Implementation
String get currentOutput {
if (_hasLeadingPlus) {
return _formatInternational();
}
return _formatNational();
}