FieldSnapshot constructor

const FieldSnapshot({
  1. required String name,
  2. required String key,
  3. required String type,
  4. String? defaultValue,
  5. String? description,
  6. bool persisted = false,
})

Implementation

const FieldSnapshot({
  required this.name,
  required this.key,
  required this.type,
  this.defaultValue,
  this.description,
  this.persisted = false,
});