getCachedProfile static method

MesiboGroupProfile? getCachedProfile(
  1. String? address,
  2. int? groupId,
  3. bool? selfProfile
)

Implementation

static MesiboGroupProfile? getCachedProfile(String? address,int? groupId,bool? selfProfile){String hashid= getHashCode(address,groupId,selfProfile);if(objMap.containsKey(hashid)){log("cached MesiboGroupProfile for ${objMap[hashid]!.name!} ($hashid)");return objMap[hashid]!;}
  return null;}