incompleteChar property
String
get
incompleteChar
The character to use for the empty portion of the progress bar.
Implementation
String get incompleteChar => _incompleteChar;
set
incompleteChar
(String newIncompleteChar)
Implementation
set incompleteChar(String newIncompleteChar) {
assert(newIncompleteChar.length == 1);
_incompleteChar = newIncompleteChar;
}