featureFactory property

(DataFeature? Function(DataGeometry?)?) featureFactory

Implementation

DataFeature? Function(DataGeometry?)? get featureFactory =>
    callMethod(getProperty(this, 'featureFactory'), 'bind', [this]);
void featureFactory=(DataFeature? value(DataGeometry?)?)

Implementation

set featureFactory(DataFeature? Function(DataGeometry?)? value) {
  setProperty(
      this, 'featureFactory', value == null ? null : allowInterop(value));
}