WriteStaticMemberExpr constructor

WriteStaticMemberExpr(
  1. String name,
  2. Expression value, {
  3. OutputType? type,
  4. bool checkIfNull = false,
})

Implementation

WriteStaticMemberExpr(
  this.name,
  this.value, {
  OutputType? type,
  this.checkIfNull = false,
}) : super(type ?? value.type);