RX constructor

const RX(
  1. Iterable<String> matchers,
  2. Widget builder(
    1. BuildContext context
    ), {
  3. Key? key,
})

Implementation

const RX(this.matchers, this.builder, {Key? key} )
  : super(key: key);