ifNull method

Expression ifNull(
  1. Expression alternativeWhenNull
)

Return {this} ?? {alternativeWhenNull} '.

Implementation

Expression ifNull(Expression alternativeWhenNull) => Expression([
      this,
      Space(),
      Code('??'),
      Space(),
      alternativeWhenNull,
    ]);