FieldInfo constructor

const FieldInfo({
  1. required String rawName,
  2. String type = 'dynamic',
  3. String? initializer,
})

Creates a FieldInfo.

Implementation

const FieldInfo({
  required this.rawName,
  this.type = 'dynamic',
  this.initializer,
});