conditional<T> method

T? conditional<T>({
  1. required T match,
  2. T? notMatch,
})

Implementation

T? conditional<T>({
  required T match,
  T? notMatch,
}) =>
    genericConditional(
      condition: this,
      match: match,
      notMatch: notMatch,
    );