setCustomInfoProvider method

void setCustomInfoProvider(
  1. BuildContext context,
  2. CustomInfoProvider customInfoProvider
)

Implementation

void setCustomInfoProvider(
    BuildContext context, CustomInfoProvider customInfoProvider) {
  this.context = context;
  this.customInfoProvider = customInfoProvider;
  if (conversationsToForward.isNotEmpty) {
    getChatProfileInfos(context, customInfoProvider);
  }
}