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