IntValueNode constructor

const IntValueNode({
  1. required String value,
  2. FileSpan? span,
})

Implementation

const IntValueNode({
  required this.value,
  FileSpan? span,
}) : super(span);