StringKind constructor

const StringKind({
  1. int? maxLines,
  2. IntKind? lengthInUtf8,
  3. IntKind? lengthInUtf16,
  4. String? pattern,
  5. List<String>? examples,
  6. List<Trait>? traits,
})

Implementation

const StringKind({
  this.maxLines,
  this.lengthInUtf8,
  this.lengthInUtf16,
  this.pattern,
  super.examples,
  super.traits,
}) : super.constructor(name: 'String');