TypedProperty constructor

const TypedProperty({
  1. String? property,
  2. String? defaultValue,
  3. ScalarConverter? converter,
})

Creates an annotation for the property of a typed dictionary or document that is a dictionary or document property.

Implementation

const TypedProperty({
  this.property,
  this.defaultValue,
  this.converter,
});