ifFalse<T> method

T? ifFalse<T>(
  1. T value
)

Implementation

T? ifFalse<T>(T value) => this ? null : value;