completeChar property

String completeChar

The character to use for the filled portion of the progress bar.

Implementation

String get completeChar => _completeChar;
void completeChar=(String newCompleteChar)

Implementation

set completeChar(String newCompleteChar) {
  assert(newCompleteChar.length == 1);
  _completeChar = newCompleteChar;
}