Selector<T extends Object?> constructor

const Selector<T extends Object?>({
  1. required T primary,
  2. T? secondary,
  3. T? ternary,
})

Implementation

const Selector({
  required this.primary,
  this.secondary,
  this.ternary,
});