Text constructor

Text({
  1. int length = 0,
  2. List<String> allowList = const [],
})

Implementation

Text({int length = 0, List<String> allowList = const []})
    : _allowList = allowList,
      _length = length;