Match constructor

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

Implementation

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