bmp static method

RandomUnicode bmp([
  1. Random? random
])

Helper method to limit random strings to the Basic Multilingual Plane

Implementation

static RandomUnicode bmp([Random? random]) => RandomUnicode(random)
  ..addIncluded(min: Lim.minCharCode, max: Lim.maxCharCodeBmp);