CodeField constructor

const CodeField({
  1. required String name,
  2. required String type,
  3. bool isFinal = true,
  4. String? defaultValue,
})

Creates a field node.

Implementation

const CodeField({
  required this.name,
  required this.type,
  this.isFinal = true,
  this.defaultValue,
});