RandomUnicodeRange class

Class for the pair of lower and upper boundaries

Constructors

RandomUnicodeRange({int? min, int? max, List<int>? list, Random? random})
The constructor

Properties

hashCode int
The hash code for this object.
no setterinherited
list List<int>
List of separate character codes
latefinal
max int
Highest character code
latefinal
min int
Lowest character code
latefinal
random Random
Random number generator (can be overwritten by the parent RandomUnicode object)
getter/setter pair
randomMax int
max - min + 1 or the last index in the list
latefinal
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

nextCharCode() int
Next char code generator
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

defaultRandom Random
Default random number generator
final