copyWithWrapped method

MatchGroup copyWithWrapped({
  1. Wrapped<List<String>>? conditions,
})

Implementation

MatchGroup copyWithWrapped({Wrapped<List<String>>? conditions}) {
  return MatchGroup(
      conditions: (conditions != null ? conditions.value : this.conditions));
}