IfNullExpr constructor

IfNullExpr(
  1. Expression condition,
  2. Expression nullCase, [
  3. OutputType? type
])

Implementation

IfNullExpr(this.condition, this.nullCase, [OutputType? type])
    : super(type ?? nullCase.type);