setProperty method

void setProperty(
  1. AnnotationConfigurationProperty property,
  2. dynamic value
)

Specify more annotation properties which can be used to configure annotation presets. These may not be available on all platforms. AnnotationConfigurationProperty is an enum which contains all the available properties. The value of the property can be of any type.

Implementation

void setProperty(AnnotationConfigurationProperty property, dynamic value) {
  properties?[property] = value;
}