copyWith static method

SelectorBuilder copyWith(
  1. SelectorBuilder other
)

Copy to new instance

Implementation

static SelectorBuilder copyWith(SelectorBuilder other) {
  return SelectorBuilder()
    ..map = other.map
    .._paramFields = other._paramFields
    ..paramLimit = other.paramLimit
    ..paramSkip = other.paramSkip;
}