KernelField constructor

KernelField({
  1. required String name,
  2. bool isFinal = false,
  3. bool isStatic = false,
})

Implementation

KernelField({
  required this.name,
  this.isFinal = false,
  this.isStatic = false,
});