setSecondaryAddressFinder method

void setSecondaryAddressFinder({
  1. SecondaryAddressFinder? secondaryAddressFinder,
})

Implementation

void setSecondaryAddressFinder(
    {SecondaryAddressFinder? secondaryAddressFinder}) {
  if (secondaryAddressFinder != null) {
    this.secondaryAddressFinder = secondaryAddressFinder;
  }
}