ListProperty constructor

const ListProperty(
  1. PrimitiveProperty subProperty, {
  2. String? propertyName,
  3. bool indexed = true,
})

Implementation

const ListProperty(this.subProperty,
    {String? propertyName, bool indexed = true})
    : super(propertyName: propertyName, required: true, indexed: indexed);