copyWith method

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

Implementation

MatchGroup copyWith({List<String>? conditions}) {
  return MatchGroup(conditions: conditions ?? this.conditions);
}