Match constructor

Match(
  1. String other, {
  2. bool caseSensitive = true,
  3. String? error,
})

Implementation

Match(
  this.other, {
  this.caseSensitive = true,
  String? error,
}) : super(error);