uuidV4Re top-level property

RegExp uuidV4Re
final

RFC 4122 v4 shape matcher (case-insensitive).

Implementation

final RegExp uuidV4Re = RegExp(
  r'^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$',
  caseSensitive: false,
);