cacheProfile method

void cacheProfile(
  1. Profile profile
)

Implementation

void cacheProfile(Profile profile) {
  if (profile.id.isEmpty) return;
  mappedProfiles[profile.id] = profile;
  notify();
}