NonElementType constructor

const NonElementType(
  1. String name, {
  2. required bool isNullable,
})

Creates a new NonElementType with the given name and nullability.

Implementation

const NonElementType(this.name, {required super.isNullable});