DeclareVarStmt constructor

DeclareVarStmt(
  1. String name,
  2. Expression? value, [
  3. OutputType? type,
  4. List<StmtModifier> modifiers = const [],
])

Implementation

DeclareVarStmt(
  this.name,
  this.value, [
  this.type,
  super.modifiers = const [],
]);