fillBlanks property

dynamic fillBlanks
final

The way in which empty spaces in the puzzle should be filled

If Function then should return a string with single character Example:

fillBlanks: () {
  final fancyStrings = '@#$%^420';
  return fancyStrings[Random().nextInt(fancyStrings.length)];
}

If String then should contain a set of unique characters Example:

fillBlanks: '@#$%^420',

If bool it will use the default functionality

Implementation

final dynamic fillBlanks;