getCalloutConfig method

CalloutConfigModel? getCalloutConfig(
  1. CalloutId feature
)
inherited

Implementation

CalloutConfigModel? getCalloutConfig(CalloutId feature) {
  OE? oe = findOE(feature);
  if (oe != null) return oe.calloutConfig;
  return null;
}